How to use fuzzy search with GraphQl
There is not document about fuzzy search with GraphQl. ( If I’m wrong please paste link let me know 😜
For example, I have some products tagged by discount_20
、discount_30
、discount_40
……
What we usually do to search products via tag?
1 | { |
However, this query won’t work, as it will only return products tagged by discount_
So we need edit query to tag:*(discount_)*
1 | { |