OBJECT

SellerSearchPagination

Pagination info returned by ElasticSearch with query results.

link GraphQL Schema definition

  • type SellerSearchPagination {
  • # Current page of the search results as determined by the associated query
  • # parameter.
  • currentPage: Int! @deprecated( reason: "Use the relay style pagination on sellers directly" )
  • # Number of results per page as determined by the associated query parameter.
  • resultsPerPage: Int! @deprecated( reason: "Use the relay style pagination on sellers directly" )
  • # Total number of results divided by results per page.
  • totalPages: Int! @deprecated( reason: "Use the relay style pagination on sellers directly" )
  • # Total number of results.
  • totalResults: Int! @deprecated( reason: "Use the relay style pagination on sellers directly" )
  • }