In the sprint report jira reports that any issue with a * on it has been added after the sprint started. How can i get the JQL for that?
JQL for "Issues added to sprint after start time"
I don't think it uses JQL there. If you use Chrome, Inspect Element and the network tab you'll probably see which REST resource for JIRA Agile is called to get that data
It is JQL, data sent in the header is "jql=issueFunction+in+addedAfterSprintStart(..)" I think they don't have a field for it so it's calculated based on sprint start and creation date. –
Commutual
You'll find a way with this add-on
https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-Agile
If you have ScriptRunner
installed, you can use issueFunction
in addedAfterSprintStart(board name, sprint name)
.
ScriptRunner's docs say that function is "not available". See near the bottom of this page: scriptrunner-docs.connect.adaptavist.com/jiracloud/… –
Trost
© 2022 - 2024 — McMap. All rights reserved.