Traditional search can rely on the "includes" operator to check if a string contains the search query ("Sw" would return "Swaziland", "Sweden" and "Switzerland").
When using fuzzy search, the only operator available is "search". This doesn't return results if the search query is partial (to find "Switzerland", "Sweden" or "Swaziland", one needs to search "Switzerland", "Sweden" or "Swaziland"; "Sw" won't return any result).
How to allow partial queries with fuzzy search?