Hey,
I am building shopify function for checkout page.
On that i need product tags so how can i access product tags currently as i know i am not able to access product tags directly.
I just want to know to the way to access tags for shopify function.
Here is my Input Query:
query RunInput {
cart {
cost{
subtotalAmount{
amount
currencyCode
}
}
deliveryGroups{
id
deliveryOptions{
handle
title
}
deliveryAddress{
provinceCode
zip
}
}
lines {
quantity
merchandise {
__typename
...on ProductVariant {
id
sku
product{
id
productType
title
vendor
}
}
}
}
}
}
Thanks