I am able to search for and produce a list of Smart Checklists items assigned by user, but how do I search for Unassigned smart checklist items (or checklists that contain unassigned items)?
Hi, @Suzanne Jones
Oleksandr from the Smart Checklist team here.
For Jira Cloud, you can try the following JQL:
issue.property[SmartChecklist].assignees = EMPTY and "Checklists" is not EMPTY
For Jira Data Center, it's not as straightforward but still possible. You can use something like:
"Smart Checklist" != itemAssignee("username1") and "Smart Checklist" != itemAssignee("username2") and "Smart Checklist" != EMPTY
Please note that in both cases, Jira will find issues based on Checklist data and the search query. Unfortunately there is not way to find and show only checklist items.
I hope this helps.
Best regards,
Oleksandr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.