We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance, when setting the defaultSplitTerm to AND, you can reduce the following query in length:
defaultSplitTerm
AND
a AND b AND c
Becomes:
a b c
This makes it significantly easy to create long query patterns. When using OR for instance:
OR
danger AND (apple samsung google intel)
The text was updated successfully, but these errors were encountered:
Implemented a default split term, fixing issue riichard#4
634d08f
No branches or pull requests
For instance, when setting the
defaultSplitTerm
toAND
, you can reduce the following query in length:Becomes:
This makes it significantly easy to create long query patterns. When using
OR
for instance:The text was updated successfully, but these errors were encountered: