OBJECT

PagedResult

link GraphQL Schema definition

  • type PagedResult {
  • # NB: Carries a performance cost, as asking for this will result in a separate API
  • # call in the backend.
  • #
  • # Arguments
  • # ids: Optional: ID's of filters to fetch. If not set all filters
  • # will be returned.
  • filters(ids: [String]): [Filter]
  • result: [Product]!
  • # NB: Carries a performance cost, as asking for this will result in a separate API
  • # call in the backend.
  • sortOrders: [ProductSortOrder]
  • totalResults: Int
  • }

link Require by