DeleteCommentPayload
ObjectAutogenerated return type of DeleteComment.
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteComment } } }
Example
mutation DeleteComment(
$organizationId: ID!
$projectId: ID!
$input: DeleteCommentInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteComment(input: $input) {
errors
}
}
}
}