saleor-apps-redis_apl/apps/search/graphql/fragments/ProductVariantData.graphql
Krzysztof Wolski 69fe973121
Search: Add media and stock flag (#874)
* Add media and stock flag

* Add UI for updating the queries

* Add update info to changelog
2023-08-16 14:08:07 +02:00

36 lines
404 B
GraphQL

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