Searches issues linked to the given subquery. Additionally you can further refine your query by specifying a link type.
Note: Since you need to enclose the provided subquery using doble quotes, you must to escape any doble quotes using in the subquery by preceding a backslash after the double quotes, alternatively you can use a single quote in some cases.
Expand |
---|
title | Let's see an example... |
---|
|
Panel |
---|
This will not work
Code Block |
---|
language | sql |
---|
theme | Confluence |
---|
| issue IN linkedIssuesOf("status = "Under Review" and type = Bug") |
Searches issues linked to Bug that are currently being reviewing
This will work perfectly
Code Block |
---|
language | sql |
---|
theme | Confluence |
---|
| issue IN linkedIssuesOf("status = \"Under Review\" and type = Bug") |
Searches issues linked to Bug that are currently being reviewing
Code Block |
---|
language | sql |
---|
theme | Confluence |
---|
| issue IN linkedIssuesOf("status = 'Under Review' and type = Bug") |
Searches issues linked to Bug that are currently being reviewing |
|
|