Hi We're trying to update our schema so that the ...
# community-help
j
Hi We're trying to update our schema so that the following query will match the
®
character with a space. We've tried following the docs here: https://typesense.org/docs/guide/tips-for-searching-common-types-of-data.html We've tried using the following schema when creating the collection:
Copy code
token_separators: ['®']
However the Typesense server gives us the following error (v28)
Copy code
Error creating collection_name RequestMalformed: Request failed with HTTP code 400 | Server said: `token_separators` should be an array of character symbols.
Example collection data:
Copy code
[
  {
    "model": "Product 1 with something"
  },
  {
    "model": "Product®1 with something else"
  }
]
Example query:
Copy code
model="Product 1"
Results:
Copy code
- Product 1 with something
Expected results:
Copy code
- Product 1 with something
- Product®1 with something else
Are we going about this the wrong way?