Returns child issues (on Portfolio hierarchy) of issues specified by the provided subquery. See also: portfolioParentOf() 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 portfolioChildOf("resolution = "Won't Do" AND status = Closed") |
Searches for childrens of already closed issues which their resolution have been set to "Won't Do"
This will work perfectly
Code Block |
---|
language | sql |
---|
theme | Confluence |
---|
| issue IN portfolioChildOf("resolution = \"Won't Do\" AND status = Closed") |
Searches for childrens of already closed issues which their resolution have been set to "Won't Do"
Code Block |
---|
language | sql |
---|
theme | Confluence |
---|
| issue IN portfolioChildOf("status = 'In Progress' AND reporter = currentUser()") |
Searches for childrens of in progress issues reporter by me |
|
This function does not traverse the link from Epic to Story. To also search for stories, or subtasks you should use this function in conjuntion with issuesInEpics() or subtasksOf() JQL functions.
|