Skip to main content

Documentation Index

Fetch the complete documentation index at: https://colossal.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Queries

order

Fetch an order by UID.
query Order($orderUid: UUID!) {
  order(orderUid: $orderUid) {
    uid
    status
    subtotalAmount
    tax
    totalAmount
    customer {
      uid
      email
      fullName
    }
    billingAddress {
      line1
      line2
      city
      state
      postalCode
      country
    }
    lineItems {
      uid
      quantity
      unitPrice
      totalPrice
      sku
      variantProperties
      image
    }
    createdAt
    updatedAt
  }
}

Types

Order

FieldTypeDescription
uidUUIDOrder ID
statusPENDING | CONFIRMED | COMPLETE | REFUNDEDOrder status
subtotalAmountDecimalSubtotal before tax
taxDecimalTax amount
totalAmountDecimalTotal including tax
customerCustomer?Customer who placed the order
billingAddressAddress?Billing address
lineItems[OrderLineItem]Items in the order
createdAtDateTime
updatedAtDateTime

OrderLineItem

FieldTypeDescription
uidUUIDLine item ID
quantityIntQuantity purchased
unitPriceDecimalPrice per unit
totalPriceDecimalTotal for this line
skuString?SKU
variantPropertiesJSON?Variant properties at time of purchase
imageString?Product image URL