Hi there, I am using get collection API to get the product vendor list from the specified collection https://shopify.dev/docs/api/storefront/2023-04/queries/collection but the product list object always return empty array. Is there something that I should configure on my main store? It worked previously, but since the past week this didn’t work anymore.
Here is my GraphQL query
query {
collection(handle:"men") {
handle
title
products(first:1, sortKey:MANUAL) {
filters {
label
values {
label
count
input
}
}
}
}
}
This query works on my development store, but not on my main store
Here is the response
{
"data": {
"collection": {
"handle": "men",
"title": "MEN",
"products": {
"filters": []
}
}
}
}
Do you guys have any idea?
