Skip to content

Commit 57c524c

Browse files
Query: clarify offset/limit docs.
1 parent 6a14f12 commit 57c524c

File tree

1 file changed

+2
-1
lines changed
  • objectbox-java/src/main/java/io/objectbox/query

1 file changed

+2
-1
lines changed

objectbox-java/src/main/java/io/objectbox/query/Query.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ public List<T> find() {
220220
}
221221

222222
/**
223-
* Find all Objects matching the query between the given offset and limit. This helps with pagination.
223+
* Find all Objects matching the query, skipping the first offset results and returning at most limit results.
224+
* Use this for pagination.
224225
*/
225226
@Nonnull
226227
public List<T> find(final long offset, final long limit) {

0 commit comments

Comments
 (0)