For the complete documentation index, see llms.txt. This page is also available as Markdown.

addCommentToIssue

Adds a comment to a specific security issue. Useful for team collaboration and tracking discussion about security findings.

Examples

mutation AddCommentToIssue($input: addCommentToIssueInput!) {
  addCommentToIssue(input: $input)
}

Variables

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

{
  "input": {
    "issueId": "30966426-oxPolicy_securityCloudScan_100-example",
    "comment": "some comment"
  }
}
curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
 "query": "mutation AddCommentToIssue($input: addCommentToIssueInput!) { addCommentToIssue(input: $input) }",
 "variables": {
    "input": {
      "issueId": "30966426-oxPolicy_securityCloudScan_100-example",
      "comment": "some comment"
    }
  }
}'

Arguments

You can use the following argument(s) to customize your addCommentToIssue mutation.

Argument
Description
Supported fields

Input containing the issue identifier and the comment text to add

issueId String! comment String!

Fields

Return type: Boolean

Last updated