Hi, I have one field that is not a facet called "n...
# community-help
g
Hi, I have one field that is not a facet called "name". I have another field that is facet called "location.address.canton" When I configure my adapter I attempt to put this on the query_by
Copy code
queryBy:'name,location.address.canton'
But I got an error that the facet field doesn't exist on the schema. Isn't it possible to use my facet field in the queryBy clause?
😕 got it ! I used it as a common queryBy parameter. I had one collection that didn't know this field.
Copy code
additionalSearchParameters: {
    queryBy:"name,location.address.canton"
  },
I have found this
Copy code
collectionSpecificSearchParameters
k
👍