Hello,
I am having an issue with the Locations GraphQL endpoint. I have one specific location that can’t be searched for by query string. I have modified the names for these examples. I have:
{
locations(first: 1, query: "Name:broken") {
edges {
node {
id
name
}
}
}
}
Which returns:
{
"data": {
"locations": {
"edges": [
{
"node": {
"id": "gid://shopify/Location/{REDACTED}",
"name": "A Store"
}
}
]
}
}
A Store is the first store I have alphabetically. Changing the names changes the store that it picks up by default. If I change that query to select more than First:1 then it will return multiple stores.
If I re-run that first query, but change the name to A Store, it will pick up just that store, it will only return one store if First:5 is requested. Same with my other store. This leads me to believe there is some sort of specific set up on that store that’s causing issues.
Anyone else come across something like this?