Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

Issue Checklist delivers provides Checklist Content YAML and Checklist Text fields field, that which can be used to build advanced search queries. 

It allows users to search for issues in Basic or Advanced-JQL mode for item text and item status. Read more about issue search in JIRA.

...

Search for all issues with an empty checklist (no items):

...

or 

Code Block
"Checklist Text" is EMPTY

...

Search for all issues with an item containing "abc" word:

Code Block
"Checklist Content YAML" ~ "\"abc\"" 
Code Block
"Checklist Text" ~ "abc"


Search for all issues with items in "Skipped" status (statuses must be enabled):

...

Code Block
"Checklist Text" ~ "\\[skipped\\]"

...

Search for all issues containing checklist item with given user mention:

Code Block
"Checklist Content YAML" ~ "\"@b0926e6a-bbb4-460e-a2c5-37811d\""
Code Block
"Checklist Text" ~ "\"@b0926e6a-bbb4-460e-a2c5-37811d\""

...

Search for all issues with an item "abc" that is checked (item is completed):

Code Block
"Checklist Content YAML" ~ "\"text: abc
    checked: true\""
Code Block
"Checklist Text" ~ "\\[x\\] abc"


Warning

Due to Jira bug, this query and the ones below (searching for an exact term) do not work as expected. Please vote for a fix at JRACLOUD-69263

...

Search for all issues with an item "abc" that is unchecked (item is not completed):

Code Block
"Checklist Content YAML" ~ "\"text: abc
    checked: false\""
Code Block
"Checklist Text" ~ "\\[\\] abc"


Search for all issues with an item "abc" that is checked (completed) and item "def" that is unchecked (not completed):

...

Code Block
"Checklist Text" ~ "\\[x\\] abc" and "Checklist Text" ~ "\\[\\] def"

...