Hello guys I have a question about turning a field...
# community-help
z
Hello guys I have a question about turning a field to indexable so we can query_by it: • So we already have a collection setup in prod, and it has a field called
uid
that already has index set to true, and now we want to be able to search that field from the client side. ◦ Value of this field is an uuid, for example:
36320851-a136-4ef5-86ea-9b0bd4e70701
• Then on the client side we set
uid
in the
query_by
parameter. But then if we set the query parameter to the above uid
36320851-a136-4ef5-86ea-9b0bd4e70701
, there's no result returned... So my questions are: • Is this because the the value is an uuid with
-
in the string, so we cannot get the search result as expected, and we will need to configure the
token_separators
config for the collection? • If we do need to configure
token_separators
, how can we do that to update the existing collection? Or we have to create a new collection for this? Many thanks in advanced!