i have a filter where i need to return a list of issuekeys from ES Portfolio project aswell as all connected child issues in each of the top issue (the Portfolio Epic)
here is my filter -
issuekey in (EEEP-267, EEEP-133) OR issuekey in childIssuesOf(EEEP-133) AND fixVersion in (PI18C)
It works with only one issuekey for childissues Of, but when i enter
issuekey in childIssuesOf(EEEP-133, EEEP-267)
i get error "Function 'childIssuesOf' expected '1' arguments but received '2'." because the function wont take more than one argument. So how can i solve this.
You can turn "issuekey in childIssuesOf(EEEP-133, EEEP-267)" into "issuekey in childIssuesOf(EEEP-133) OR issuekey in childIssuesOf(EEEP-267)"
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.