mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 22:37:48 +08:00
11 lines
211 B
GraphQL
11 lines
211 B
GraphQL
mutation editComment ($id: ID!, $asset_id: ID!, $edit: EditCommentInput) {
|
|
editComment(id:$id, asset_id:$asset_id, edit:$edit) {
|
|
comment {
|
|
status
|
|
}
|
|
errors {
|
|
translation_key
|
|
}
|
|
}
|
|
}
|