get-order-list-expanded.graphql 761 B

123456789101112131415161718192021222324252627282930313233
  1. query GetOrderList($options: OrderListOptions) {
  2. orders(options: $options) {
  3. totalItems
  4. items {
  5. id
  6. state
  7. currencyCode
  8. totalQuantity
  9. subTotalWithTax
  10. totalWithTax
  11. shippingWithTax
  12. shippingLines {
  13. shippingMethod {
  14. id
  15. name
  16. }
  17. priceWithTax
  18. }
  19. lines {
  20. productVariant {
  21. id
  22. name
  23. }
  24. featuredAsset {
  25. id
  26. preview
  27. }
  28. linePriceWithTax
  29. quantity
  30. }
  31. }
  32. }
  33. }