I'm trying to show Actual Time spent on the child issues of a project, but show the Estimated Dev Time that was put on the main project issue itself.
So far I've tried:
issuekey in childIssuesOf("XXX")
The problem with this is that it only returns the child issues themselves. Where I want the data from the child issues, but show the main project itself.
I've always tried:
project = PROJECT_TYPE AND status = closed AND resolutiondate >= startOfYear()
This shows me the main projects itself (which is great), but only shows time logged in that main project issue and not the child issues of the project.
Any help would be greatly appreciated!
Try:
issuekey in childIssuesOf("XXXX") OR issuekey = "XXXX"
That should return both the main issues and all of its children
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.