Hi,
The storefront api works great to retrieve the information in a specific language. But what about querying the translated fields, is that possible?
Currently I can search a product by part of the title doing something like:
Storefront.client.product.fetchQuery({first:10,query:"title:*gold*"}).then(product=>(product))
This returns all products with the word “gold” in the title. I can even get the results in the language I want. But the field being queries (title) is always the default language one.
For instance if the user is portuguese and searches for “ouro” (“gold” in portuguese) the API should search for items with the word “ouro” in the portuguese title, not the english (default) title field.
Is this possible?