Versions Compared

Key

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

...

Returns a list of issue keys that are subtasks of the specified issue.

Examples

Code Block
languagejs
//Subtasks of the issue "PRJ-32" are : PRJ-192,PRJ-193,PRJ-203.
subtasks("PRJ-32");

Returns: The list of the sub tasks linked to PRJ-32: |PRJ-192|PRJ-193|PRJ-203|

Code Block
languagejs
subtasks(key);

Returns: The list of the sub tasks linked to the current issue in the form similar with the example above.

...