type PaymentConnection
A page of payments following the Relay Connection spec. edges holds the payments in this page (each with its cursor) and pageInfo describes whether more pages exist in each direction plus the cursors that bound this page.
Typical "load more" loop: read edges[].node for the data, then if pageInfo.hasNextPage is true request the next page with payments(input: { first: N, after: pageInfo.endCursor, ...same filters }).
| Field | Type | Description |
|---|---|---|
edges | [PaymentEdge!]! | The payments in this page, ordered newest first. |
pageInfo | PageInfo! | Pagination metadata for this page: hasNextPage/hasPreviousPage and the startCursor/endCursor bounds. |