Information about pagination in a connection.
type PageInfo {
# When paginating forwards, are there more items?
hasNextPage: Boolean! # true
# When paginating backwards, are there more items?
hasPreviousPage: Boolean! # false
# When paginating backwards, the cursor to continue.
startCursor: String # YXJyYXljb25uZWN0aW9uOjEw
# When paginating forwards, the cursor to continue.
endCursor: String # YXJyYXljb25uZWN0aW9uOjE5
}