Function getCommentsByIssue

  • Get comments by defined issueId (or issueKey).

    Parameters

    • issueIdOrKey: string

    Returns Promise<any[]>

    Example

    await SR.jira.getCommentsByIssue('KEY-1')
    // expected result:
    // {
    // comments: [
    // id, author, body, renderedBody: "<p>Hello World</p>", created, updated
    // ]
    // }