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)"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.