I am trying to write a JQL query for linkedIssuesOfAllRecursive. I wanted everything linked to a given filter.
I was trying to write the JQL query as follows:
issueFunction in linkedIssuesOfAllRecursive("filter = "myFiltername"")
with the following error: Error in the JQL Queery: Expecting ')' or ',' but got 'myFiltername'.
Is this type of query possible?
Hi Kara,
You need to escape double quotes used within your subquery using the \ character.
Please try:
issueFunction in linkedIssuesOfAllRecursive("filter = \"myFiltername\"")
Regards
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.