I have a issue with some childs which all contains certain fixversions.
I use the linkedIssuesOfRecursive to determine all childs (this is working). But now I want to find all the affectedversions which are linked to the fixversions of these childs.
Any suggestions how I can do this?
Hello,
You said that you wanted to find all affected versions. Do you want to find it using JQL? if so then it is not possible. JQL only returns issues. It can not return fix versions.
Yes, I want to use JQL and in the end I want to find issues, but something like this:
affectedversion in (issueFunction in linkedIssuesOfRecursive("key = XXX-1"))
But the linkedIssuesOfRecursive does also returns issues with certain fixVersions and not a list of versions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You would need to develop your own JQL function for this task
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can find an example here:
https://scriptrunner.adaptavist.com/latest/jira/custom-jql-functions.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.