orders_read
Arguments
ID!
required
The id of the order to fetch: a branded order id or a 24-char Mongo ObjectId
hex.
Returns
A customer order ingested from the merchant’s ecommerce platform.
Show fields
Show fields
When the order was placed (the ecommerce provider’s creation time, falling back to Redo’s ingestion time).
String
The ISO 4217 currency code the order was placed in.
The customer who placed the order, if known.
String!
required
The order’s id in the source ecommerce platform.
required
The shipments fulfilling this order’s items.
Show fields
Show fields
String!
required
The fulfillment’s id in the source platform.
required
The items included in this fulfillment.
Show fields
Show fields
String!
required
The fulfilled line item’s id in the source platform.
String!
required
The product’s id in the source platform.
Int!
required
How many units of this item were fulfilled.
String
The stock keeping unit of the fulfilled item.
String!
required
The product title of the fulfilled item.
String
The variant’s id in the source platform.
required
The current tracked shipment status.
String
The shipping carrier, if known.
required
String
The carrier tracking number, if known.
ID!
required
The id of this order.
String!
required
The order’s legacy Mongo ObjectId (24-char hex) from before the CockroachDB migration.
required
The items purchased on this order.
Show fields
Show fields
String!
required
The line item’s id in the source platform.
String
A URL to the item’s image, if any.
String
The purchased product’s id in the source platform.
Int!
required
How many units of this item were ordered.
String
The stock keeping unit for this line item.
String!
required
The product title for this line item.
String
The purchased variant’s id in the source platform.
The order’s shipping method, cost, and destination.
Show fields
Show fields
String
The selected shipping method’s name, e.g. Standard.
[String!]!
required
Free-form tags applied to the order.
Example
query {
order(id: "...") {
createdAt
currencyCode
externalId
id
legacyId
tags
}
}