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