PoliciesPaginationInput
Cursor pagination. Omit it to get the first 50 policies.
Page in one direction at a time: after with first to go forwards, before with
last to go backwards. Mixing the two returns an InputValidationError.
input PoliciesPaginationInput {
after: String
before: String
first: Int
last: Int
}
Fields
PoliciesPaginationInput.after ● String scalar
Return the policies that come after this cursor. Take the value from edges.cursor
or pageInfo.endCursor of the previous page. Combine with first.
PoliciesPaginationInput.before ● String scalar
Return the policies that come before this cursor. Combine with last.
PoliciesPaginationInput.first ● Int scalar
How many policies to return, counting forwards. Defaults to 50.
_Constraints_:
* Minimal value: 1
* Maximal value: 100
PoliciesPaginationInput.last ● Int scalar
How many policies to return, counting backwards. Defaults to 50 when before is set.
_Constraints_:
* Minimal value: 1
* Maximal value: 100
Member Of
policies query