Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

The instructions on this page describe how to execute a JQL search usingĀ JQL Search Extensions.

On this page:

Table of Contents
minLevel1
maxLevel7
exclude^Try it free.*

Agile JQL functions

Info

JQL functions are accessible from the Extended Search page or via Extended Search filters in Jira advanced search.

...

nextSprint()

Finds issues that are planned for the next sprint. Pass a Jira board name or board ID as an argument.

issue in nextSprint("ACME board")

issue in nextSprint(10)

...

previousSprint()

Finds issues that were part of a previous sprint. Pass a Jira board name or board ID as an argument.

...

issue in previousSprint(10)

...

addedToSprintAfterStart()

Finds issues that were added to the sprint after the sprint was started. Handy to identify a scope creep in the sprint.

...