Hello, I have ```"token_separators": [ ".", ...
# community-help
s
Hello, I have
Copy code
"token_separators": [
    ".",
    "-",
    "/"
  ]
But I would like to query and by pass the "-" token. How would you do that? For example I have a filter_by=sku:[1,3400,Kit44] I would like the results to not pull sku's that have "-1" at the end. Example 3400-1. Just get the sku that equals "1" Can this be done? We are running Typesense v0.23.1 LMK thanks!
j
Once you set
-
as a token separator then
3400-1
will get indexed as
3400
and
1
separately, so by definition, it will pull up that document for a search query of
1
since that document now has that token standalone
s
Ahh ok, so then it would be a best practice to not set a
-
as a separator if your trying to match
3400-1
and also a
1
if you want them to be unique.
j
Yeah
s
Thanks! 👍
👍 1