DeleteCommentThreadPayload
ObjectAutogenerated return type of DeleteCommentThread.
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteCommentThread } } }
Example
mutation DeleteCommentThread(
$organizationId: ID!
$projectId: ID!
$input: DeleteCommentThreadInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteCommentThread(input: $input) {
errors
}
}
}
}