Get issues

Get issues by JQL with all the available fields

const issues = await SR.jira.getIssuesByJQL('project = TEST');

Get issues by JQL with a few fields only

To get a list of all the available fields on your instance, see The Jira Cloud platform REST API

const issues = await SR.jira.getIssuesByJQL('project = TEST', 'summary,timespent,customfield_10091');