I need a JQuery that will shows results of ONLY 'Stories' from Subtasks that are assigned to me.
So right now, all stories are unassigned. The sub-tasks are assigned to couple of resources. What I want to do is - do a search where it will populate a list of stories (only stories) that have associated subtasks that are assigned to me. Can someone please assist?
Hi Misba
I had a similar requirement and used:
project = someProject AND (issuetype in subTaskIssueTypes() OR issueFunction in hasSubtasks()) ORDER BY priority DESC, updated DESC
Know the question was asked ages ago but maybe it will help someone.
It is difficult without script runner to answer this. There are a few thinks to know in my instance I created a linktype for the relationship between issues: for Parent of (outward) and "child of" (inward).
Project = (name of your project) AND assignee= (your name) AND issuelinktype in ("is child of")
Results will be sub-task only assigned to you.
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.