saleor-apps-redis_apl/apps/search/graphql/fragments/ProductVariantData.graphql
Lukasz Ostrowski 1982d81f17
Extend pricing data in Algolia (#998)
Co-authored-by: Krzysztof Wolski <krzysztof.k.wolski@gmail.com>
2023-09-08 14:05:37 +02:00

56 lines
647 B
GraphQL

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