Versions Compared

Key

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

...

Code Block
# To select Project "Demo" and Issue types Epic or Story
project = "DEMO" AND issuetype in (Epic, Story)

# To select Project "Demo" and Status types.
project = "DEMO" AND status in (Done, "In Progress", "Selected for Development")

# To select Project "Demo" and Issues in the current sprint. 
project = "DEMO" AND fixVersion = "Current Sprint"

# To select current sprint for Project "Demo"
project = "DEMO" AND sprint in openSprints()

Please note 'CurrentUser' will not work with JQL in the traceability instead use your user details.

Example 1: Traceability matrix for project “DEMO” and issue types Epic and Story:

...