object PageInfo

The Relay compliant PageInfo type, containing data necessary to paginate this connection.

Fields

FieldTypeDescription
hasNextPageBoolean!

When paginating forwards, are there more items?

hasPreviousPageBoolean!

When paginating backwards, are there more items?

startCursorString

When paginating backwards, the cursor to continue.

endCursorString

When paginating forwards, the cursor to continue.

Referenced By

Example

{
  "hasNextPage": true,
  "hasPreviousPage": true,
  "startCursor": "abc123",
  "endCursor": "abc123"
}