Skip to main content

Order

The Order of a user.

type Order implements Node {
id: UUID!
shipments(
filter: ShipmentFilterInput
first: Int
orderBy: ShipmentOrderInput
skip: Int
): ShipmentConnection!
}

Fields

Order.id ● UUID! non-null scalar

The ID of the node.

Order.shipments ● ShipmentConnection! non-null object

Get all associated Shipments

Order.shipments.filter ● ShipmentFilterInput input

Filtering

Order.shipments.first ● Int scalar

Number of items to return

Order.shipments.orderBy ● ShipmentOrderInput input

Ordering

Order.shipments.skip ● Int scalar

Number of items to skip

Interfaces

Node interface

An object with an ID.

Member Of

Shipment object

Implemented By

_Entity union