1/29
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What does JQL stand for?
Jira Query Language
What is the fastest way to find a specific issue key like PROJ-123?
The Quick Search bar
How does Basic Search display filters?
As visual dropdown menus (like a spreadsheet)
True or False: Basic Search requires you to write code.
False (it is click-based)
How do you see the JQL code behind a Basic Search?
Click the 'Switch to JQL' button
Where is the Quick Search bar located?
In the top navigation bar of Jira
What logic does Basic Search use when you select two statuses in one filter?
OR logic (shows issues in either status)
How do you find a hidden field in Basic Search?
Click the '+ More' or 'Add Filter' button
What is the best use case for Quick Search?
Finding a specific issue or keyword quickly
What is the best use case for Basic Search?
General filtering of projects or issue types without coding
What are the three components of a JQL clause?
Field
What does the '=' operator mean?
Equals (exact match)
What does the '!=' operator mean?
Not Equal To (excludes value)
Which operator is used to search for a list of values?
The IN operator
When are quotation marks required in a JQL value?
When the value contains spaces or reserved words
What does the 'AND' operator do?
Narrows results (both conditions must be true)
What does the 'OR' operator do?
Broadens results (either condition can be true)
What is a JQL 'Field'?
The category of data being searched (e.g. Project
What is the 'Value' in JQL?
The specific data you are looking for (e.g. 'To Do'
How should you format a list for the IN operator?
Inside parentheses: IN ('Value1'
What JQL function finds issues assigned to the person currently viewing?
currentUser()
What operator is used for keyword/text searches?
The tilde (~)
What keyword finds fields that have no data?
EMPTY (or NULL)
How do you represent '7 days ago' in JQL?
-7d
What clause is used to sort JQL results?
ORDER BY
What is the difference between ASC and DESC?
ASC is smallest to largest; DESC is largest to smallest
What function finds the end of the current day?
endOfDay()
What does 'summary ~ Login' do?
Searches for the word 'Login' anywhere in the summary
How do you group AND/OR logic to ensure it runs correctly?
Use parentheses ()
What does a () mean in a value?
It is a function and not a specific value