Hi,
The ProductFilters parameter does not work on the search query (storefront API).
query searchWithFilters($query: String!, $first: Int, $productFilters: [ProductFilter!]) {
search(query: $query, first: $first, productFilters: $productFilters) {
edges {
node {
... on Product {
id
title
vendor
}
}
}
}
}
How can solve the problem?