I’m trying to get all products where feedback is not null. Below is an example:
{
products(first: 20, query:"error_feedback:*") {
edges {
node {
id
title
feedback {
details {
app {
id
}
messages {
message
}
}
summary
}
}
}
}
}
When I query without this param, the results look like below:
{
"data": {
"products": {
"edges": [
{
"node": {
"id": "gid://shopify/Product/THIS_ONE_DOES_NOT_HAVE_AN_IMAGE",
"title": "Product Without an Image",
"feedback": {
"details": [
{
"app": {
"id": "gid://shopify/App/MY_APP"
},
"messages": [
{
"message": "Missing image.."
}
]
}
],
"summary": "This product couldn’t be published to {STORE}"
}
}
},
{
"node": {
"id": "gid://shopify/Product/THIS_ONE_HAS_AN_IMAGE",
"title": "Just a Shirt",
"feedback": null
}
}
]
}
}
}
What’s the correct syntax, then, for query:“error_feedback”? I can’t find samples of it anywhere!