EditCommentInput
InputAutogenerated input 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
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| content | String! | — |
| editedAt | ISO8601DateTime! | — |
| id | ID! | — |
| mediaAttachmentIds | [ID!] | — |
| mutationMetadata | JSON | — |
| screenRecordingFileId | ID | — |
| signedMediaAttachmentFileIds | [ID!] | — |
| signedScreenRecordingId | ID | — |
| updatedAt | ISO8601DateTime! | — |