Skip to content

Relay connection for store history. Enables proper complexity limit calculation based on pagination size.

graphql
type StoreHistoryConnection {
  edges: [StoreHistoryEdge!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

StoreHistoryConnection.edges ● [StoreHistoryEdge!]! non-null object

List of history record edges

StoreHistoryConnection.pageInfo ● PageInfo! non-null object

Pagination information

StoreHistoryConnection.totalCount ● Int! non-null scalar

Total number of records within the filter criteria (not just this page)

Member Of

Store object