The grid (core) ยท console.warn
{url} was asked for totalCount and answered without one, so the grid has no total for this query and will scroll open-ended rather than present the page size as the whole. The schema may not expose totalCount on this connection; pass `count: false` to stop asking, or a `parseResponse` that reads whatever the schema does call it.
Printed by The grid (core), prefixed [lattice], since 1.51.0.
Warnings reference › source.graphql.nototal
- Identifier
source.graphql.nototal- Raised by
- The grid (core)
- Since
- 1.51.0
What happened
The adapter asked for a total and the response carries none. Treating the page length as the whole set would be a confident, wrong number, so the total is left absent and the grid scrolls open-ended instead.
The fix
Pass count: false to stop asking, or a parseResponse that reads whatever your schema calls the total.
Reference
Covered in full at the API reference.