Function getCommentsByJQL

  • Get comments by specified JQL.

    Parameters

    • jql: string

    Returns Promise<any[]>

    Example

    await SR.jira.getCommentsByJQL('assignee = currentUser()')
    // expected result:
    // [{
    // id,
    // key,
    // comments: [
    // id, author, body, renderedBody: "<p>Hello World</p>", created, updated
    // ]
    // }]