FundsPaginationInput
Cursor pagination. Omit it to get the first 50 funds.
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 FundsPaginationInput {
after: String
before: String
first: Int
last: Int
}
Fields
FundsPaginationInput.after ● String scalar
Return the funds that come after this cursor. Take the value from edges.cursor or
pageInfo.endCursor of the previous page. Combine with first.
FundsPaginationInput.before ● String scalar
Return the funds that come before this cursor. Combine with last.
FundsPaginationInput.first ● Int scalar
How many funds to return, counting forwards. Defaults to 50.
_Constraints_:
* Minimal value: 1
* Maximal value: 100
FundsPaginationInput.last ● Int scalar
How many funds to return, counting backwards. Defaults to 50 when before is set.
_Constraints_:
* Minimal value: 1
* Maximal value: 100
Member Of
availableFunds query