{
products(first: 250, query: "tag:'discount_'") {
edges {
node {
id
title
handle
tags
}
}
}
}
when I try to query the data having “discount_” substring in a tag, it returns null data, but there are products having the given tag.
