-
Notifications
You must be signed in to change notification settings - Fork 0
/
section-basic-syntax.tex
29 lines (28 loc) · 1.73 KB
/
section-basic-syntax.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
\newpage
\chapter{Basic syntax}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\section{Operators}
\begin{center}
\rowcolors{2}{LightCyan!85}{white}
\begin{tabular}{l c l}
Description & Operator & Example \\
\hline\hline
EQUALS & = & project = CLI \\
NOT EQUALS & != & issuetype != Bug \\
GREATER THAN & > & "Story Points[Number]" > 0 \\
GREATER THAN EQUALS & >= & "Story Points[Number]" >= 5 \\
LESS THAN & < & "Story Points[Number]" < 21 \\
LESS THAN EQUALS & <= & "Story Points[Number]" <= 21 \\
IN & IN & status IN (Todo, Doing) \\
NOT IN & NOT IN & status NOT IN (Done) \\
CONTAINS & ~ & summary ~ "Refactor" \\
DOES NOT CONTAIN & !~ & summary !~ "Report" \\
IS & IS & fixVersion IS EMPTY \\
IS NOT & IS NOT & cvss IS NULL \\
WAS & WAS & status WAS "Done" \\
WAS IN & WAS IN & project WAS IN (WEB, CLI) \\
WAS NOT IN & WAS NOT IN & assignee WAS NOT IN (Daniel, Sebastian) \\
WAS NOT & WAS NOT & priority WAS NOT "High" \\
CHANGED & CHANGED & status CHANGED FROM "Open" TO "Close"
\end{tabular}
\end{center}