
* parse metadata before sending to algolia * variants mapping * extract metadata mapping * Changeset * rename field
36 lines
385 B
GraphQL
36 lines
385 B
GraphQL
fragment ProductVariantData on ProductVariant {
|
|
metadata {
|
|
key
|
|
value
|
|
}
|
|
id
|
|
name
|
|
sku
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
|
|
channelListings {
|
|
id
|
|
channel {
|
|
slug
|
|
}
|
|
price {
|
|
currency
|
|
amount
|
|
}
|
|
}
|
|
|
|
attributes {
|
|
...ProductAttributesData
|
|
}
|
|
|
|
product {
|
|
...ProductData
|
|
}
|
|
}
|