I have the following filter that works fine:
issueFunction in linkedIssuesOf("\'Target Release\' in (2019.06,2019.08)")
When I try to use the above with REST API, I'm running into issues.
For instance,
curl -D- -X POST -H "Authorization: Basic xxxxxxxxxxxxxxxxx==" -H "Content-Type: application/json" --data '{"jql": "issueFunction in linkedIssuesOf("\'Target Release\' in (2019.06,2019.08)")}' https://localhost:8081/rest/api/2/search
gives syntax error: `(' unexpected
I have tried escaping the double quotes as recommended in some forums, but still getting errors.
Any suggestions as how to get this to work?