If you want to find any asset that partially matches a search query, use the * wild card operator like so
prod*
This will return assets that contain words like “product” or “production.”
Likewise, if you want to find assets that have words close to your search term (essentially misspellings), use the ~ fuzzy match operator:
wednesday~
This will match assets with “wednesday” as well as with the common misspelling “wendsday.”
Note: Wild cards are not supported at the beginning of the search term.
Was this article helpful?
YesNo