Hi!
Is there any possibility to use the filter_query on translated content?
filter_query
Looks like filter_query[my_own_property][in] only works for the default language. What I’m to achieve is something like this:
filter_query[my_own_property][in]
Assuming DE is default language and EN an additional language. filter_query[my_own_property][in]=my-english-title&starts_with=en/*
filter_query[my_own_property][in]=my-english-title&starts_with=en/*
Thanks!
Hello Thomas,
for the second case you need to add __i18n__locale to the field in that you want to search a value. It would look like this using your example: filter_query[my_own_property__i18n__en][in]=my-english-title&starts_with=en/*
filter_query[my_own_property__i18n__en][in]=my-english-title&starts_with=en/*
Hi Hannes,
amazing, that’s exactly what I was looking for, thanks!