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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.