EditCommentPayload
ObjectAutogenerated return type of EditComment.
mutation { organization(id: $organizationId) { project(id: $projectId) { editComment } } }
Example
mutation EditComment(
$organizationId: ID!
$projectId: ID!
$input: EditCommentInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
editComment(input: $input) {
errors
}
}
}
}