Pagination
List Payload Shape
Most list responses expose:
totalnextCursornodes
Some also expose:
edges(legacy alias in some list types)pollingDelaySeconds(notably logs/slowlogs style polling reads)
Pagination Arguments
Depending on field, you may see one or more of:
after(cursor-based pagination)nextCursor(explicit cursor input on some fields)page(legacy page-number flow)
When both cursor and page arguments exist, prefer cursor-based flow.