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 https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-group-issue-fields
const issues = await SR.jira.getIssuesByJQL('project = TEST', 'summary,timespent,customfield_10091');