INPUT_OBJECT

PageInput

Page input is used to control the behavior of paged results.

link GraphQL Schema definition

  • input PageInput {
  • # How many items should be skipped from the start
  • skip: Int!
  • # How many items should be returned at most
  • take: Int!
  • }