PageInfo

Version 2024-04-01

Overview

Represents pagination information in Relay about edges when used inside a Connection See https://github.com/graphql-java/graphql-java/blob/master/src/main/java/graphql/relay/PageInfo.java See https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo

Fields

FieldDescription
endCursor (String)

Cursor to the last edge, or null if this page is empty.

hasNextPage (Boolean required)

True if and only if this page is not the last page.

hasPreviousPage (Boolean required)

True if and only if this page is not the first page.

startCursor (String)

Cursor to the first edge, or null if this page is empty.