1. Boolean Logic
The familiar boolean operators are also supported
AND
/ and / &&- OR / or / ||
- NOT / not / !
However, beware that they do not honor the usual precedence rules, so parentheses should be used whenever multiple operators are used together.
eg:((quick AND fox) OR (brown AND fox) OR fox) AND NOT news

2. Bracketing
Parentheses should be used whenever multiple operators are used together.
By default, the boolean logic used to interpret text in the query string if no operators are specified is OR. This means that if no operator is added before or after a bracket, it will assume to be an OR operator.

3. Quotation Marks
By default, quotation marks will be added to all words/phrases, this means that the entire phrase must be present in the text as is.
text1: "There was a man in a brown that ran very quick" text2: "The quick brown fox"
query: "quick brown"
The above query will return text 2 but not text 1
query: "quick" AND "brown"
The above query will return both text 2 and text 1
4. Case Sensitivity
All queries are case insensitive!