Skip to main content

TypeAlias.PaginationArgs

type PaginationArgs = {
after?: string;
first?: number;
};

Arguments for paginating a collection.

Properties

PropertyTypeDescription
after?stringA cursor representing the starting point for the next page
first?numberThe maximum number of items to retrieve in the current page.