saleor-apps-redis_apl/apps/search/graphql/fragments/ProductVariantData.graphql
Lukasz Ostrowski 21f0a60f07
Add search app (#108)
* Add Search App to apps

* Link eslint config to invoices

* Changesets
2023-02-08 09:28:14 +01:00

32 lines
350 B
GraphQL

fragment ProductVariantData on ProductVariant {
id
name
sku
pricing {
price {
gross {
amount
currency
}
}
}
channelListings {
id
channel {
slug
}
price {
currency
amount
}
}
attributes {
...ProductAttributesData
}
product {
...ProductData
}
}