Versions Compared

Key

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


Excerpt

This function returns the value of issue field, regular one or custom field.

It requires following parameters:

TypeNotes
BIGINT

Id of an issue

Note

Not the key of an issue.


VARCHAR

Valid syntax is

Code Block
`fieldname` [`]fieldname[`] [PATH `valid-xpath-expression`]

PATH, CAST, AS are keywords.

fieldname is obligatory, where PATH expression is not.

valid-xpath-expression is an XPATH expression, see Handling ANY (java objects) type with XPATH


Note

Please note the use of grave accents  - ` . Grave accent is obligatory for valid-xpath-expression. For fieldname grave accents can be omitted.


Examples:

Code Block
'Key'


Code Block
'`Key`'


Code Block
'`ReporterObject` PATH `emailAddress`'


...