issuekey in childIssuesOf(BB-503) AND fixVersion = "Beta"
"Parent Link" in childIssuesOf("BB-503") and issuetype = Epic
Both of above queries are working individually. How to i combine these queries so that i get the issues where the immediate parent fixVersion = "Beta"
Hi @arun gurram and welcome! Try the following - childIssuesOf() is useful if you're looking for children of a specific key whereas portfolioChildrenOf() is useful when you need to find children of a subquery:
issueFunction in portfolioChildrenOf("key = BB-503 and fixVersion = Beta and type = Epic")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.