Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
NameOperatorVariationExamples
Term{TOKEN}
Code Block
languagetext
themeConfluence
all these are tokens
Phrase"{TOKEN} {TOKEN}"'{TOKEN} {TOKEN}'
Code Block
languagetext
themeConfluence
"This is a phrase" but all these are tokens
Code Block
languagetext
themeConfluence
'This is a phrase' but all these are tokens
Or{OPERAND} OR {OPERAND}

Explicit

Code Block
languagetext
themeConfluence
one OR two

If OR is the implicit operator

Code Block
languagetext
themeConfluence
one two
And{OPERAND} AND {OPERAND}

Explicit

Code Block
languagetext
themeConfluence
one AND two

If AND is the implicit operator

Code Block
languagetext
themeConfluence
one two
NotNOT {OPERAND}- {OPERAND}
Code Block
languagetext
themeConfluence
this but NOT that
Code Block
languagetext
themeConfluence
this but -that
Grouping( {OPERAND} {OPERAND} ... )
Code Block
languagetext
themeConfluence
(cats AND dogs)



Code Block
languagetext
themeConfluence
(cats AND dogs NOT ("black cats" OR "white dogs"))
BOOTSBOOST{OPERAND}^{NUMBER}
Code Block
languagetext
themeConfluence
dogs^3.5 have more boost than cats^2

Works with phrases as well

Code Block
languagetext
themeConfluence
"this phase"^3.5
Wildcard* or ?Just *

For zero o more characters

Code Block
languagetext
themeConfluence
All *.py files
Code Block
languagetext
themeConfluence
I want my ki*y

for any character

Code Block
languagetext
themeConfluence
I want my p?t
Code Block
languagetext
themeConfluence
the year was 19??
Date Range{DATE}:{DATE}{DATE}-{DATE}

With colon (:)

Tip

We encourage the use of  colon (:) for date ranges, is easier to read for us

Code Block
languagetext
themeConfluence
1970/08/03:2022/09/29
Code Block
languagetext
themeConfluence
1970-08-03:2022-09-29
Code Block
languagetext
themeConfluence
1970.08.03:2022.09.29
Code Block
languagetext
themeConfluence
70/AUG/03:22/SEP/29
Code Block
languagetext
themeConfluence
70-AUG-03:22-SEP-29
Code Block
languagetext
themeConfluence
1970.08.03:2022.09.29
Code Block
languagetext
themeConfluence
70.AUG.03:22.SEP.29
Code Block
languagetext
themeConfluence
08/03/1970:09/29/2022
Code Block
languagetext
themeConfluence
08-03-1970:09-29-2022
Code Block
languagetext
themeConfluence
08.03.1970:09.29.2022
Code Block
languagetext
themeConfluence
AUG/03/70:SEP/29/22
Code Block
languagetext
themeConfluence
AUG-03-70:SEP-29-22
Code Block
languagetext
themeConfluence
AUG.03.70:SEP.29.22
Code Block
languagetext
themeConfluence
03/08/1970:29/09/2022
Code Block
languagetext
themeConfluence
03-08-1970:29-09-2022
Code Block
languagetext
themeConfluence
03.08.1970:29.09.2022
Code Block
languagetext
themeConfluence
03/AUG/70:29/SEP/22
Code Block
languagetext
themeConfluence
03-AUG-70:29-SEP-22
Code Block
languagetext
themeConfluence
03.AUG.70:29.SEP.22
With dash (-)


Warning

We recommend not to use - for date ranges. The parser does understand these, but we hardly can

Code Block
languagetext
themeConfluence
1970/08/03-2022/09/29
Code Block
languagetext
themeConfluence
1970-08-03-2022-09-29
Code Block
languagetext
themeConfluence
1970.08.03-2022.09.29
Code Block
languagetext
themeConfluence
70/AUG/03-22/SEP/29
Code Block
languagetext
themeConfluence
70-AUG-03-22-SEP-29
Code Block
languagetext
themeConfluence
1970.08.03-2022.09.29
Code Block
languagetext
themeConfluence
70.AUG.03-22.SEP.29
Code Block
languagetext
themeConfluence
08/03/1970-09/29/2022
Code Block
languagetext
themeConfluence
08-03-1970-09-29-2022
Code Block
languagetext
themeConfluence
08.03.1970-09.29.2022
Code Block
languagetext
themeConfluence
AUG/03/70-SEP/29/22
Code Block
languagetext
themeConfluence
AUG-03-70:SEP-29-22
Code Block
languagetext
themeConfluence
AUG.03.70-SEP.29.22
Code Block
languagetext
themeConfluence
03/08/1970-29/09/2022
Code Block
languagetext
themeConfluence
03-08-1970-29-09-2022
Code Block
languagetext
themeConfluence
03.08.1970-29.09.2022
Code Block
languagetext
themeConfluence
03/AUG/70-29/SEP/22
Code Block
languagetext
themeConfluence
03-AUG-70-29-SEP-22
Code Block
languagetext
themeConfluence
03.AUG.70-29.SEP.22
Range{NUMBER}:{NUMBER}{NUMBER}-{NUMBER}
With colon (:)


Tip

We encourage the use of  colon (:) for ranges, is easier to read for us

Code Block
languagetext
themeConfluence
10:20 
Code Block
languagetext
themeConfluence
-10:20  
Code Block
languagetext
themeConfluence
-10:-20  
Code Block
languagetext
themeConfluence
-10.5:-20.32  
With dash (-)


Warning

We recommend not to use - for ranges. The parser does understand these, but we hardly can

Code Block
languagetext
themeConfluence
10-20 
Code Block
languagetext
themeConfluence
-10-20   
Code Block
languagetext
themeConfluence
-10--20  
Code Block
languagetext
themeConfluence
-10.5--20.32
Field{FIELD_NAME}:{OPERAND}
Code Block
languagetext
themeConfluence
title:Cheese
Code Block
languagetext
themeConfluence
title:Cheese^2
Code Block
languagetext
themeConfluence
title:"Cheese & Beacon"
Code Block
languagetext
themeConfluence
title:"Cheese & Beacon"^2
Near{OPERAND} NEAR {OPERAND}
Code Block
languagetext
themeConfluence
"this phrase" NEAR (this tokens)
Before{OPERAND} BEFORE {OPERAND}
Code Block
languagetext
themeConfluence
"this phrase" BEFORE (this tokens)
Adjacent{OPERAND} ADJ {OPERAND}
Code Block
languagetext
themeConfluence
"this phrase" ADJ (this tokens)
Span Not{OPERAND} SPAN_NOT {OPERAND}
Code Block
languagetext
themeConfluence
"this phrase" SPAN_NOT (this tokens)