Hi, can someone explain in simple language how pre...
# community-help
d
Hi, can someone explain in simple language how prefixes works? The docs simply states:
Copy code
Indicates that the last word in the query should be treated as a prefix, and not as a whole word
What does this means exactly?
k
👋 For a given query
sample query
With prefix=true: a record containing the text "sample querying" will match because "query" is a prefix match on "querying" With prefix=false: "sample querying" will not match because the last word will NOT be used as a prefix search, but as an exact whole word search.
👍 2