| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- query ($id: ID!){
- product(id: $id) {
- ...ProductWithVariants
- }
- }
- fragment ProductWithVariants on Product {
- id
- languageCode
- name
- slug
- description
- featuredAsset {
- ...Asset
- }
- assets {
- ...Asset
- }
- translations {
- languageCode
- name
- slug
- description
- }
- optionGroups {
- id
- languageCode
- code
- name
- }
- variants {
- ...ProductVariant
- }
- facetValues {
- id
- code
- name
- facet {
- id
- name
- }
- }
- }
- fragment Asset on Asset {
- id
- name
- fileSize
- mimeType
- type
- preview
- source
- }
- fragment ProductVariant on ProductVariant {
- id
- languageCode
- name
- price
- currencyCode
- priceIncludesTax
- priceWithTax
- taxRateApplied {
- id
- name
- value
- }
- taxCategory {
- id
- name
- }
- sku
- options {
- id
- code
- languageCode
- name
- }
- facetValues {
- id
- code
- name
- facet {
- id
- name
- }
- }
- featuredAsset {
- ...Asset
- }
- assets {
- ...Asset
- }
- translations {
- id
- languageCode
- name
- }
- }
|