INPUT_OBJECT

CursorInput

link GraphQL Schema definition

  • input CursorInput {
  • # Used to specify how many to get when iterating forward.
  • first: Int
  • # Used to specify how many to get when iterating backwards.
  • last: Int
  • # Specified after the first page when iterating forwards.
  • after: String
  • # Specified after the first page when iterating backwards.
  • before: String
  • # Either specify both (orderBy and orderDirection) or (orderByList and
  • # orderDirectionList).
  • orderBy: String
  • orderDirection: OrderDirection
  • orderByList: [String!]
  • orderDirectionList: [OrderDirection!]
  • }