I’ve added a query filter to this request to filter for ACTIVE products, yet it does not affect the results which include ARCHIVED as well as ACTIVE etc.
I’ve tried using ACTIVE and active and some variations but no luck.
Can anyone tell me what I’m doing wrong?
query GiftFinderData {
products(first: 10, query:"product_status:active") {
edges {
node {
id
title
status
descriptionHtml
variants(first: 10) {
edges {
node {
title
price
legacyResourceId
}
}
}
}
}
}
}
