OBJECT
PageInfo
Information about pagination in a connection.
link GraphQL Schema definition
1 type PageInfo { 2 3 # When paginating forwards, are there more items? 4 Boolean! : 5 6 # When paginating backwards, are there more items? 7 Boolean! : 8 9 # When paginating backwards, the cursor to continue. 10 String : 11 12 # When paginating forwards, the cursor to continue. 13 String : 14 15 }
link Required by
- AgentConnectionA connection to a list of items.
- ChannelConnectionA connection to a list of items.
- ChatLogConnectionA connection to a list of items.
- DepartmentConnectionA connection to a list of items.
- GraphQLSubscriptionConnectionA connection to a list of items.
- VisitorChannelConnectionA connection to a list of items.
- WebPathConnectionA connection to a list of items.