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
Quick fix may be to introduce a new FacetFilters type to represent all those options but it's a breaking change and it would have to wait for another major release. We can also introduce a new field with this type and deprecate the original facetFilters fields but it would be misleading for the user not to use the actual Algolia parameter name.
The text was updated successfully, but these errors were encountered:
The
facetFilters
parameter is currently typed as aSeq[String]
. However, it can either be used as:String
Seq[String]
Seq[Seq[String]]
Seq[?]
where?
can be a composed of bothSeq[String]
orString
See our documentation for more details: https://www.algolia.com/doc/api-reference/api-parameters/facetFilters/.
Quick fix may be to introduce a new
FacetFilters
type to represent all those options but it's a breaking change and it would have to wait for another major release. We can also introduce a new field with this type and deprecate the originalfacetFilters
fields but it would be misleading for the user not to use the actual Algolia parameter name.The text was updated successfully, but these errors were encountered: