Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL - linkedIssuesOfAllRecursive - How do I use a filter on this?

Kara Heuer February 17, 2020

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?

1 answer

1 accepted

1 vote
Answer accepted
Jack Nolddor _Sweet Bananas_
Atlassian Partner
February 18, 2020

Hi Kara,

You need to escape double quotes used within your subquery using the \ character.

Please try:

issueFunction in linkedIssuesOfAllRecursive("filter = \"myFiltername\"")

Regards

Kara Heuer February 18, 2020

Thanks Jack!

Jack Nolddor _Sweet Bananas_
Atlassian Partner
February 18, 2020

You're welcome Kara

Suggest an answer

Log in or Sign up to answer