Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel2
outlinefalse
typeflat
separatorbrackets
printabletrue
Info

JQL reading list and references:

  1. https://www.atlassian.com/software/jira/guides/expand-jira/jql

  2. https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-14

  3. https://confluence.atlassian.com/jirasoftwareserver/advanced-searching-939938733.html

...

Code Block
$metadata:<MEATADATA KEY>

OR

Code Block
$metadata:'<MEATADATA KEY>' <- Quotes required if the metadata value may contain blanks


Like this:

...



For example:

  1. The metadata key/value pair is defined: projectkey=SAM

    image-20240422-145541.png

  2. Jira Snapshots search JQL clause may be set to use this metadata:

    Code Block
    project = $metadata:projectkey
  3. The actual search that will be sent to Jira is this:

    Code Block
    project= SAM

...