Stories and Sub-Tasks - Assignment Mismatch

Andres Dominguez November 30, 2017

Hi,

 

I need a query that pulls a list of tasks the meet the below parameters:

1) the tasks are in a current sprint (sprint in opensprints())

2) the sub-tasks are assigned to a specific user (assignee = x123)

3) the story is not assigned to the same user 

4) the only tasks opened in that story are only for user x123

 

Basically, I want to see all tasks in my current sprints that are mine where all other tasks are closed in that story but the story never got assigned to me. 

Can this be done in JIRA?  

 

I got this far but can't seem to figure out the 4th item of things only open to x123

issuefunction in subtasksOf("project = pc and sprint in opensprints() and type = story and assignee != x123") AND assignee = x123 and status not in (done, cancelled)

Thanks,

Andy

1 answer

1 accepted

0 votes
Answer accepted
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 30, 2017

Try this

issueFunction in subtasksOf('type = story and sprint in openSprints() and  assignee !=currentUser()  and not issueFunction in parentsOf(" resolution is empty and assignee !=currentUser() ") ') and assignee =currentUser() and status not in (done, cancelled)
Andres Dominguez November 30, 2017

that worked!

Suggest an answer

Log in or Sign up to answer