JQL Search
Swift Checklist offers JQL Search functionality. Presently, you have the ability to search for issues based on checklist state and item assignee.
Checklist state searches
The checklist state is determined by aggregating the states of all checklist items. For instance,
Checklist | State |
---|---|
Checklist was never added to the issue | null |
Checklist has no items | empty |
Checklist has items, but non of them are checked | not_started |
At least item is checked and at least one item is unchecked | in_progress |
All items are checked | done |
Examples of Checklist State Searches
swiftChecklistProgressState = null
Search for Jira issues where the checklist was never added.
Â
swiftChecklistProgressState = empty
Search for all Jira issues where the checklist was added but has no items.
Â
swiftChecklistProgressState = not_started
Search for all Jira issues where the checklist has items but none of them are checked.
Â
Search for all Jira issues where the checklist has at least one checked and at least one unchecked item.
Â
Search for all Jira issues where the checklist has all items checked.
Â
Perform the same searches as above but using the issue property instead of the JQL alias.
Checklist assignee searches
You can search for issues that have unchecked checklist items assigned to some user.
Examples of Checklist Assignee Searches
Search for all Jira issues where the checklist has unchecked items assigned to the current user.
Â
Search for all Jira issues where the checklist has unchecked items assigned to the selected user.
Â
Search for all Jira issues where the checklist has unchecked items assigned to any user.
Â