Operators Flashcards

1
Q

operator IS is limited to …

A

Is Empty
Is Null
(and only in some fields, not all)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

operator NOT can only be used with …

A

Is
In
Was
Ex: fixVersion IS NOT EMPTY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

operator WAS is used to …

A

Look for values current or in the past
Can be set with time boundaries
Can be complemented by other criteria such as BY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

operator WAS is limited to these fields:

A
Assignee, 
Fix Version, 
Priority, 
Reporter, 
Resolution, 
Status
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

operator CHANGED is used to

A

Look for issues that have changed in the past
Can be set with time boundaries
Can be complemented with BY user
Can be complemented with FROM / TO values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

operator CHANGED is limited to these fields:

A
Assignee, 
Fix Version, 
Priority, 
Reporter, 
Resolution, 
Status
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

WAS vs CHANGED

A

WAS looks for Values

CHANGED looks for transitions between values (i.e. changes)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

operator = cannot be used with which field types ?

A
text fields (e.g. Summary or Description)
use CONTAINS instead
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

operator > can only be used on which field types ?

A
Field types that support sorting, e.g. :
Date
DateTime
Versions
Voters
Priorities
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

operator CONTAINS (~) can only be used on which field types ?

A

text fields (e.g. Summary or Description)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

when searching text fields, which operators can be used

A

Contains (~)

Does not contain (!~)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How does operator not equal (!=) behave when searched field is empty or null ?

A

The != operator will not match a field which is EMPTY or NULL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How to enhance a CHANGED search (3 options) ?

A

use FROM and TO values
use time boundaries (after, before, during, on)
use BY user or BY (user1, user2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can you add time boundaries to a WAS or CHANGED search ?

A
use 
AFTER "YYYY/MM/DD"
BEFORE "YYYY/MM/DD"
DURING ("YYYY/MM/DD","YYYY/MM/DD")
ON "YYYY/MM/DD"
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you write an exact search on “grant me” in all text fields ?

A

text ~ “"grant me "”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you write a fuzzy search on “grant me” in all text fields ?

A

text ~ “grant me”