9

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?

Pratik Khadloya
  • 12,509
  • 11
  • 81
  • 106

3 Answers3

3

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

mdoar
  • 6,758
  • 1
  • 21
  • 20
  • 1
    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. – igor Oct 15 '18 at 07:31
2

You'll find a way with this add-on

https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-Agile

Andreas
  • 5,501
  • 2
  • 20
  • 23
-1

If you have ScriptRunner installed, you can use issueFunction in addedAfterSprintStart(board name, sprint name) .

Hesam Faridmehr
  • 1,176
  • 8
  • 20
  • ScriptRunner's docs say that function is "not available". See near the bottom of this page: http://scriptrunner-docs.connect.adaptavist.com/jiracloud/jql-aliases.html – lo_fye Jan 28 '19 at 13:48