Hello,
I have a list of issues. And I want to find child issues for them that belong to next-gen projects.
I'm trying to solve this problem in one request to Jira API.
First, I tried to do it with the eval request (/rest/api/3/expression/eval). I created a filter (issue.project.style == 'next-gen') and added JQL query (parent in (..)). But then I realized that from the response it is not possible to match parents and children. There is no "parent" field.
Second, I took a look at the search request (/rest/api/3/search). It's not possible to filter next-gen project in request but in the response, I found param "simplified" in the project field. Is it possible to identify next-gen project by this field?
Or is there any other solution?
Thank you