OBJECT
Order
An order is a customer’s completed request to purchase one or more products from a shop. An order is created when a customer completes the checkout process, during which time they provides an email address, billing address and payment information.
link GraphQL Schema definition
- type Order implements Node {
- # The reason why the order was cancelled.
- # If the order was not cancelled, this value is `null`.
- OrderCancelReason :
- # The date and time when the order was cancelled.
- # If the order was not cancelled, this value is `null.`
- DateTime :
- # The date and time when the order was created.
- DateTime! :
- # The code of the currency used for the payment.
- CurrencyCode! :
- # The order’s URL for a customer.
- URL :
- # Displays financial status of order payment processing.
- OrderDisplayFinancialStatus :
- # Displays fulfillment status of the order.
- OrderDisplayFulfillmentStatus! :
- # The customer's email address.
- String :
- ID! :
- # List of the order’s line items.
- #
- # Arguments
- # first: [Not documented]
- # after: [Not documented]
- # reverse: [Not documented]
- Int!, : String, : Boolean): OrderLineItemConnection! ( :
- # A unique numeric identifier for the order for use by shop owner and customer.
- Int! :
- # The customer's phone number.
- String :
- # The date and time when the order was imported.
- # This value can be set to dates in the past when importing from other systems.
- # If no value is provided, it will be auto-generated based on current date and
- # time.
- DateTime! :
- # The address to where the order will be shipped.
- MailingAddress :
- # Price of the order before shipping and taxes.
- Money :
- # The sum of all the prices of all the items in the order, taxes and discounts
- # included (must be positive).
- Money! :
- # The total amount that has been refunded.
- Money! :
- # The total cost of shipping.
- Money! :
- # The total cost of taxes.
- Money :
- # The date and time when the order was last modified.
- DateTime! :
- }