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"]
}
}curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
"query": "query GetIssuesStatuses($getIssuesStatusesInput: GetIssueStatusInput!) { getIssuesStatuses(getIssuesStatusesInput: $getIssuesStatusesInput) { issueId status } }",
"variables": {
"getIssuesStatusesInput": {
"issueIds": ["example"]
}
}
}'Arguments
You can use the following argument(s) to customize your getIssuesStatuses query.
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.
issueId String!
Unique identifier of the issue
Last updated
