query (
$query: String
$first: Int
$sortKey: ProductSortKeys
$reverse: Boolean
$after: String
) {
products(
first: $first
query: $query
sortKey: $sortKey
reverse: $reverse
after: $after
) {
edges {
cursor
node {
id
title
availableForSale
tags
images(first: 1) {
edges {
node {
id
url
}
}
}
compareAtPriceRange {
maxVariantPrice {
amount
currencyCode
}
minVariantPrice {
amount
currencyCode
}
}
priceRange {
maxVariantPrice {
amount
currencyCode
}
minVariantPrice {
amount
currencyCode
}
}
variants(first: 30) {
edges {
node {
id
availableForSale
}
}
}
}
}
pageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
}
}
{
"query": "tag:半袖Tシャツ",
"first": 1,
"sortKey": "CREATED_AT",
"reverse": true,
"after": null
}
Search results do not return products with the Japanese tag “半袖Tシャツ”
It has been confirmed that the nodes query returns the product
