Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

To find particular checklists or checklist items, you can use Jira's powerful search feature.

Using Jira’s built-in search tool

Using Jira’s built-in basic searching, you can search for specific text or fields. With advanced searching, you can create JQL queries using more advanced functions.

For more information, see Basic Searching and Advanced Searching in the Atlassian Jira documentation.

To access the search tool:

  1. In the header, go to Issues > Search for Issues.

  2. Enter search text in the Contains text field, or click Advanced to enter an advanced search.

Searching checklists using special JQL functions

With Checklist, you also have access to additional search functions to help you find checklists or checklist items that meet advanced criteria.

In the Advanced search bar, a list of possible functions will pop up as soon as you start typing. For details about all the special functions that are available, see the table below. And remember — if you are searching for text that contains more than one word, make sure to enclose it in double quotes ("")!

Combining JQL functions with the AND operator is different from using the itemSearch() function. Using the AND operator searches for entire checklists that meet all the criteria, while itemSearch() searches for individual items that meet your criteria.

If these special functions do not appear, your installation may not have Checklist Searcher set as the search template. For more information, see Making checklists searchable.

Function

Example

Returns all issues in which…

allItemsChecked()

DoD = allItemsChecked()

The DoD checklist has all items checked.

DoD != allItemsChecked()

The DoD checklist does not have all items checked.

allItemsUnchecked()

DoD = allItemsUnchecked()

The DoD checklist has all items unchecked.

DoD != allItemsUnchecked()

The DoD checklist does not have all items unchecked.

allMandatoryItemsChecked()

DoD = allMandatoryItemsChecked

The DoD checklist has all mandatory items checked.

DoD != allMandatoryItemsChecked

The DoD checklist does not have all mandatory items checked.

checklistCompletion(%)

DoD > checklistCompletion("50")

The DoD checklist has more than 50% of its items checked.

DoD < checklistCompletion("50")

The DoD checklist has fewer than 50% of its items checked.

DoD >= checklistCompletion("50")

The DoD checklist has more than or exactly 50% of its items checked.

DoD <= checklistCompletion("50")

The DoD checklist has fewer than or exactly 50% of its items checked.

itemAssignedToMe()

DoD = itemAssignedToMe()

The DoD checklist has an item assigned to you.

itemDueDate()

DoD = itemDueDate(2021-12-01)

The DoD checklist has an item due on December 1, 2021 (only the ISO date format is supported).

DoD = itemDueDate(1d)

The DoD checklist has an item due tomorrow.

DoD = itemDueDate("-1w 2d")

The DoD checklist has an item that was due one week and two days ago.

DoD >= itemDueDate("0d") AND DoD < itemDueDate("1w")

The DoD checklist has an item that is due within the next week (the >, <, >= and <= operators are supported for relational searches).

itemPriority()

DoD = itemPriority(High)

The DoD checklist has an item set to High priority.

itemSearch()

DoD = itemSearch("assignee = lucy")

The DoD checklist has an item assigned to Lucy.

DoD = itemSearch("completion = true")

The DoD checklist has an item marked as complete.

DoD = itemSearch("dueDate = 2020-05-01")

The DoD checklist has an item due on May 1, 2020.

DoD = itemSearch("dueDate = 1d")

The DoD checklist has an item due tomorrow.

DoD = itemSearch("dueDate = -1w 2d")

The DoD checklist has an item that was due one week and two days ago (within itemSearch, only the = operator is supported for relational searches).

DoD = itemSearch("name = Do testing")

The DoD checklist has an item named “Do testing”.

DoD = itemSearch("priority = high")

The DoD checklist has an item set to High priority.

DoD = itemSearch("status = In Progress")

The DoD checklist has an item with the “In Progress” status.

DoD = itemSearch("name = Submit work", "dueDate = 2010-05-01", "assignee = ")

The DoD checklist has an item with ALL of the following:

  • The name “Submit work”;

  • A due date of May 1, 2015;

  • Nobody assigned to it (since the assignee property is blank).


SERVER DOCUMENTATION (On Cloud? Go here.)
Have questions? Contact our Service Desk for help anytime.
  • No labels