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
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
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
"
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.