You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Translation state in the format: languageTag,state. You can use this parameter multiple times. When used with multiple states for same language it is applied with logical OR. When used with multiple languages, it is applied with logical AND. (optional)
In our use case, we want to use multiple languages but have them be treated as an OR. Currently, I'm splitting apart the list of languages and querying them individually and combining them in my code into one "unioned" results object, but this puts extra load on the server when just querying with OR logic would allow me to use a single (paginated) call.
The text was updated successfully, but these errors were encountered:
When querying for languages, the
filterState
parameter has these semantics:In our use case, we want to use multiple languages but have them be treated as an OR. Currently, I'm splitting apart the list of languages and querying them individually and combining them in my code into one "unioned" results object, but this puts extra load on the server when just querying with OR logic would allow me to use a single (paginated) call.
The text was updated successfully, but these errors were encountered: