Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Search - Show Sub-tasks assigned to a specific person

Elliott Lock October 15, 2018

Hi,

I'd like to know how I can perform a search for stories which contain sub-tasks assigned to a specific person, when the stories are assigned to a different person. I don't want to see the sub-tasks, just a list of stories.

Many Thanks

2 answers

0 votes
Tarun Sapra
Community Champion
October 15, 2018

Hello @Elliott Lock

If you have ScriptRunner plugin you can use this query for your requirement.

type = story and issueFunction in parentsOf("assignee=username") and assignee != username
0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 15, 2018

Hello,

You would need a plugin for it. For example, you could use the JQL Search Extenstions plugin:

https://marketplace.atlassian.com/apps/1214791/jql-search-extensions-for-jira

You could write a JQL query like this:

issue in parentOf("assignee = username")

Suggest an answer

Log in or Sign up to answer