-
Notifications
You must be signed in to change notification settings - Fork 639
Closed
Labels
Description
(Going to use Datastore as the example)
In the docs from Datastore.runQuery
var query = dataset.createQuery('Lion');
// Retrieve 5 companies.
dataset.runQuery(query, function(err, entities, endCursor, apiResponse) {
// Use `endCursor` as the starting cursor for your next query.
var nextQuery = query.start(endCursor);
var callback = function(err, entities, endCursor, apiResponse) {};
dataset.runQuery(nextQuery, callback);
});Seems like in datastore there's no way to set the page size, however even so, it seems that paging is super manual here, which bums me out.
What if we could make it so that...
var query = dataset.createQuery('Lion');
dataset.runQuery(query, function(err, entities, nextPage) {
// entities is the current page.
nextPage(); // Call this same callback function, with the next page of entities?
});Or even more explicitly, let the user tell you "just get them all please":
var query = dataset.createQuery('Lion').setPagination(false);
dataset.runQuery(query, function(err, entities) {
// entities is the current page.
});?
Let me know if I'm a crazy person here... @ryanseys @stephenplusplus We're having a similar discussion about pagination being explicit versus implicit on googleapis/google-cloud-python#895