Hey,
The product status filter doesn’t seem to work if you change the status of the product.
For example: 2 products with multiple variants
Example Jeans in Draft
Example Tshirt in Active
Query: product_status:ACTIVEand first 25
query ProductVariants($query: String!, $first: Int!) {
productVariants(query: $query, first: $first) {
pageInfo {
hasNextPage
}
edges {
node {
displayName
barcode
sku
id
product {
id
status
}
}
}
}
}
Does return the tshirt variants as expected.
Change jeans to Active in Shopify Admin and re-run the query and doesn’t return both tshirt and jeans.