| 1234567891011121314151617181920212223242526272829 |
- query GetProductList($options: ProductListOptions) {
- products(options: $options) {
- totalItems
- items {
- id
- name
- slug
- description
- optionGroups {
- id
- name
- }
- enabled
- variants {
- id
- name
- sku
- stockLevel
- priceWithTax
- currencyCode
- options {
- id
- name
- groupId
- }
- }
- }
- }
- }
|