DEV

Query.

shipments

No description

Arguments

after

String

Returns the elements after the specified cursor

before

String

Returns the elements before the specified cursor
ShipmentsFilter type to filter by different criteria of a Shipment

first

Int

The number of elements to return from the query

last

Int

The number of last elements to return from the query
GraphQL
1
2
3
type Query {
  shipments(after: String, before: String, filter: ShipmentFilter, first: Int, last: Int): ShipmentConnection
}

Was this page helpful?