INPUT_OBJECT

DerivedDataPaginationInput

link GraphQL Schema definition

  • input DerivedDataPaginationInput {
  • # Name of the query variable that configures the value of the `after` parameter
  • # for paging
  • afterVariableName: String!
  • # Maximum number of paged elements to include in the output
  • maxRowCount: Int!
  • # JSON path to field that contains the list of elements to accumulate for the
  • # output.
  • #
  • # For example, in an entity query it might be `entityQuery.queryEntities.entities`
  • pathToListOfRowElements: String!
  • # JSON path to pageInfo field in the result. Ex:
  • # entityQuery.queryEntities.pageInfo
  • # It is mandatory to include hasNextPage` and `endCursor` fields in the query
  • # response. Query will fail to fetch
  • # response in absence of these fields.
  • pathToPageInfo: String!
  • }