[Storefront API] ProductFilters parameters does not work on all search query

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?

I think this is a major issue, can we have some news on it?