I am trying to create a list of all the all the inititative where the stories have not updated.
Therefore i wrote JQL below to limit my search to the stories only that i am interested / were not updated in the last 5 days.
updated < startOfDay(-5) AND resolution = unresolved AND issuetype not in (Sub-task,Epic)
The JQL above gives the intended results & it works fine. However,
Now when i try to access all the parents of the stories given by the JQL mentioned above, it does not return a singly value. See Below :
issuefunction in portfolioparentsof(" updated < startOfDay(-5) AND resolution = unresolved AND issuetype not in (Sub-task,Epic)") & issuetype = Initiative.
Can you please advise what am i doing wrong that the result are not reflected at all. Also please correct me if there is a better way to access this info