1
0

get-product-list.graphql 616 B

1234567891011121314151617181920212223242526272829
  1. query GetProductList($options: ProductListOptions) {
  2. products(options: $options) {
  3. totalItems
  4. items {
  5. id
  6. name
  7. slug
  8. description
  9. optionGroups {
  10. id
  11. name
  12. }
  13. enabled
  14. variants {
  15. id
  16. name
  17. sku
  18. stockLevel
  19. priceWithTax
  20. currencyCode
  21. options {
  22. id
  23. name
  24. groupId
  25. }
  26. }
  27. }
  28. }
  29. }