0
votes

I have worked on several sub tasks in my project which has different parent tasks. I need a query to retrieve all the parent tasks of sub tasks which I have worked or working on? Is there a query in JQL(JIRA) for this task?

What are the plugins(free/licence) to improve these searches?

3

3 Answers

1
votes

The following query will return all parent tasks, which have sub-tasks assigned to the current user. (The parent task need not be assigned to current user)

issueFunction in parentsOf("assignee = currentUser() ")
1
votes

If you have the Search Linked Issues plugin (previously called Craftforge JQL Functions Plugin), which isn't free anymore, but it was until version 1.3.1, you can use this query:

issue in parentIssuesFromQuery("assignee = currentUser()")
0
votes

this will give you all the task other than sub task which is assigned to you

assignee = currentUser() and type != Sub-task

hope this will help