DEV

Query.

shipmentConsolidations

Query for a paginated connection of ShipmentConsolidation objects

Arguments

after

String

Returns the elements after the specified cursor. Used with first.

before

String

Returns the elements before the specified cursor. Used with last.
ShipmentConsolidationFilter to filter by different criteria of the ShipmentConsolidation.

first

Int

Returns the first n elements. Used in forward pagination

last

Int

Returns the last n elements. Used in backwards pagination.
GraphQL
1
2
3
type Query {
  shipmentConsolidations(after: String, before: String, filter: ShipmentConsolidationFilter, first: Int, last: Int): ShipmentConsolidationConnection
}

Was this page helpful?