-
Notifications
You must be signed in to change notification settings - Fork 675
Change paging API for Datastore #288
Copy link
Copy link
Closed
Labels
🚨This issue needs some love.This issue needs some love.api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.triage meI really want to be triaged.I really want to be triaged.
Milestone
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.triage meI really want to be triaged.I really want to be triaged.
Type
Fields
Give feedbackNo fields configured for issues without a type.
For queries that limit the number of result, we implement an API that promises to return a
nextQuerythat:nullif there are no more results availableAs shown by this regression test, this is not working as advertised because of #5, that is basically WAI because of consistency.
Instead of returning
nextQuery, we should return the end cursor for the page retrieved, that can be used by external developers as start cursor to get the next page of results.