Versions Compared

Key

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

...

JQL function

Usage Example

allItemsClosed()

Search for issues where ALL checklist items are Closed

“Smart Checklist" = allItemsClosed()

allItemsOpen()

Search for issues where ALL checklist items are Open

“Smart Checklist" = allItemsOpen()

progress(operator,percent)

Search for checklists by Progress

“Smart Checklist" = progress(">","15")

Available operators: >, <, >=, <=, =

Use percent value from 0 to 100

itemStatus(item name, status)

Search for particular checklist items in a particular status

“Smart Checklist" = itemStatus(”PR review completed”, ”DONE")

Search for particular checklist items in a particular statuses

“Smart Checklist" = itemStatus(”PR review completed”, ”DONE, IN PROGRESS”)

Search for checklists that contain particular checklist item

“Smart Checklist" = itemStatus(”PR review completed”, ”*”)

itemAssignee(name)

Search for Assignee(s) mentioned in checklist item

  • example: “Smart Checklist” = itemAssignee(“john“,"john.smith","@JS@john")

Allowed params

  • [username] - as defined in Jira User’s profile

  • [display name] - Full name from User’s profike

  • [mention] - any string in cehcklist item that has “@” as prefix, like: @john

Image Added

itemStatus(item name, status)

Search for Date, indicated in checklist item

  • “Smart Checklist” = itemDate(“2020-01-01“)

...