added skip()
This commit is contained in:
@@ -56,6 +56,11 @@ public class Query implements QueryDefinition {
|
|||||||
return this.fieldSpec;
|
return this.fieldSpec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Query slip(int skip) {
|
||||||
|
this.skip = skip;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public Query limit(int limit) {
|
public Query limit(int limit) {
|
||||||
this.limit = limit;
|
this.limit = limit;
|
||||||
return this;
|
return this;
|
||||||
|
|||||||
Reference in New Issue
Block a user