getIssuesStatuses

Retrieves the status of multiple issues by checking which collection each exists in. Returns an array of objects with issueId and status. Status can be "Active" if found in current issues, "Resolved" if found in fixed issues or null if not found.

Examples

query GetIssuesStatuses($getIssuesStatusesInput: GetIssueStatusInput!) {
  getIssuesStatuses(getIssuesStatusesInput: $getIssuesStatusesInput) {
    issueId
    status
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "getIssuesStatusesInput": {
    "issueIds": ["example"]
  }
}

Arguments

You can use the following argument(s) to customize your getIssuesStatuses query.

Argument
Description
Supported fields

getIssuesStatusesInput GetIssueStatusInput! required

Input containing the array of issue identifiers

issueIds [String!]!

Fields

Return type: [IssueStatusResult!]!

You can use the following field(s) to specify what information your getIssuesStatuses query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

issueId String!

Unique identifier of the issue

Status of the issue

Last updated