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
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)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.