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"
}
}
Arguments
You can use the following argument(s) to customize your addCommentToIssue
mutation.
Argument
Description
Supported fields
input addCommentToIssueInput!
required
Input containing the issue identifier and the comment text to add
issueId String!
comment String!
Fields
Return type: Boolean
Last updated