1"""
2Information about the current page.
3"""
4type OffsetPageInfo {
5  "When paginating forward, are there more items?"
6  hasNextPage: Boolean!
7
8  "When paginating backward, are there more items?"
9  hasPreviousPage: Boolean!
10
11  "Next offset to use when paginating forward; null if there are no more items."
12  nextOffset: Int
13
14  "Previous offset to use when paginating backward; null if at terminal."
15  previousOffset: Int
16
17  "Total count of records in relationship."
18  totalCount: Int!
19}
20