query Input {
cart {
buyerIdentity {
customer {
hasAnyTag(tags: ["vip"])
}
}
}
discountNode {
metafield(namespace: "$app:order-discount", key: "function-configuration") {
value
}
}
}
Here hasAnyTag has a hardcoded tag vip.
I want to use dynamic tags here so that customers can set their own tags.
Can I use the Metafield value here?