TypeAlias.PaginationArgs
type PaginationArgs = {
after: string;
first: number;
};
Arguments for paginating a collection.
Properties
Property | Type | Description |
---|---|---|
after? | string | A cursor representing the starting point for the next page |
first? | number | The maximum number of items to retrieve in the current page. |