get-order-list.graphql 299 B

1234567891011121314
  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. }
  13. }
  14. }