OBJECT

PageInfo

Information about pagination in a connection.

link GraphQL Schema definition

1type PageInfo {
2
3# When paginating forwards, the cursor to continue
4endCursor: String
5
6# Indicates if there are more pages to fetch
7hasNextPage: Boolean!
8
9# Indicates if there are any pages prior to the current page
10hasPreviousPage: Boolean!
11
12# When paginating backwards, the cursor to continue
13startCursor: String
14
15}

link Required by