Magento2 How to filter products that have special price using GraphQL?
I want to get the collection of products in Response of product query in GraphQL that have special price.
How can I achieve this?
You can use:
query getProductDetailForProductPage{
product(id: 4580) {
item {
id
name
sku
special_price
special_from_date
special_to_date
}
}
}