saleor-apps-redis_apl/apps/search/graphql/fragments/ProductVariantData.graphql

57 lines
647 B
GraphQL
Raw Normal View History

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
}
}