I'm trying to get the Business Outcome from stories which are extracted by wildcards in the labels.
my inner query is to get stories based on a wildcard search:
issueFunction in issueFieldMatch('project in (projectA, projectB)', labels, '.*TestEn*')") AND issuetype in (Story, Bug)
-> this works, as I get the correct list of stories and bugs based on the wildcard search
Now, I want to get the Business Outcomes of these stories.
I have tried to use linkedIssuesOfRecursive, and I am not getting any results:
issueFunction in linkedIssuesOfRecursive("issueFunction in issueFieldMatch('project in (projectA, projectB)', labels, '.*TestEn*')")
Can you say more about "Business Outcomes" I am guessing that you have tickets linked to original ticket set? Are you using a specific link type? a specific ticket type? On the surface, it does seem odd that the recursive function is not working... usually if you don't specify a level it just goes on forever... but also, maybe that's an issue. Have you tried constraining it to just one level as a test?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.