OBJECT
ServerPagination
link GraphQL Schema definition
- type ServerPagination {
- # List of items on the current page
- : [Server]
- # Number of total items selected by the query
- : Int!
- # Number of items returned per page
- : Int!
- # Current page of the cursor
- : Int!
- # Number of the first item returned
- : Int
- # Number of the last item returned
- : Int
- # The last page (number of pages)
- : Int!
- # Determines if cursor has more pages after the current page
- : Boolean!
- }