Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

PublicPagination

Pagination options for the result

input PublicPagination {
greaterThanId: String
nbPerPage: Int!
page: Int
}

Fields

PublicPagination.greaterThanId ● String scalar general

Fetch entities with an id strictly greater than this. Enables cursor-based pagination. Cannot be used together with page.

PublicPagination.nbPerPage ● Int! non-null scalar general

Number of entities to return per page (max 500)

PublicPagination.page ● Int scalar general

Fetch entities at this page, start at page 0. Cannot be used together with greaterThanId.

Example

Member Of