matchIssues method
Checks whether one or more issues would be returned by one or more JQL queries.
Permissions required: None, however, issues are only matched against JQL queries where the user has:
- Browse projects project permission for the project that the issue is in.
- If issue-level security is configured, issue-level security permission to view the issue.
Implementation
Future<IssueMatches> matchIssues({required IssuesAndJQLQueries body}) async {
return IssueMatches.fromJson(await _client.send(
'post',
'rest/api/3/jql/match',
body: body.toJson(),
));
}