We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Using CriteriaBuilder, you can limit the size of the result set via the DSL:
cb.limit({max}, {offset}); cb.limit(10, 5);
var cb = new CriteriaBuilder.Builder({ store: mystore }); // select 10 rows, starting at 5 cb.limit(10, 5); // run cb.query();