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

38 lines
423 B
GraphQL
Raw Normal View History

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