OBJECT
PageInfo
PageInfo must contain fields hasPreviousPage and hasNextPage, both of which return non‐null booleans.
link GraphQL Schema definition
- type PageInfo {
- # hasNextPage will be false if the client is not paginating with first,
- #
- # or if the client is paginating with first, and the server has determined
- #
- # that the client has reached the end of the set of edges defined by their
- #
- # cursors.
- Boolean! :
- # hasPreviousPage will be false if the client is not paginating with last,
- #
- # or if the client is paginating with last, and the server has determined
- #
- # that the client has reached the end of the set of edges defined by their
- #
- # cursors.
- Boolean! :
- }
link Require by
- EpisodeConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- FileConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- MarkerConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- RoleConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- RoleMembersConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- UserConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.
- UserRolesConnectionAn edge wraps a node and a cursor. Edges are returned by Connection types as a standard way to paginate through connection values.