OrderLineItemConnection
Paginated order line items (Relay Connection)
type OrderLineItemConnection {
edges: [OrderLineItemEdge!]!
nodes: [OrderLineItem!]!
pageInfo: PageInfo!
totalCount: Int!
}
Fields
OrderLineItemConnection.edges ● [OrderLineItemEdge!]! non-null object
Order line item edges with cursors
OrderLineItemConnection.nodes ● [OrderLineItem!]! non-null object
Order line item nodes (shortcut for edges.map(e => e.node))
OrderLineItemConnection.pageInfo ● PageInfo! non-null object
Pagination info
OrderLineItemConnection.totalCount ● Int! non-null scalar
Total count of line items in the order (convention parity with OrderConnection/MailingAddressConnection)
Member Of
Order object