query {
products(first: 10, reverse: true) {
edges {
node {
id
title
handle
resourcePublicationOnCurrentPublication {
publication {
name
id
}
publishDate
isPublished
}
}
}
}
}
This works fine for my test store but the exact same query for my actual store throws the following error:
{
"errors": "Not Found"
}
I tried multiple different queries, all returned the same error, I checked all access scopes and access key everything is in the right place, still I get such a vague error.
Yes works fine on the GraphiQL app but this query doesn’t work on postman or using python to send requests. Both the other methods however work perfectly fine on the test store however
Can you suggest any solution, since the access token is correct to say the lease, otherwise it returns a different error and I have allowed all scopes as well, the headers are also the ones which are given in the documentation, what else am I missing?