mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 14:27:59 +08:00
8 lines
223 B
GraphQL
8 lines
223 B
GraphQL
#import "../fragments/commentView.graphql"
|
|
|
|
mutation CreateComment ($asset_id: ID!, $parent_id: ID, $body: String!) {
|
|
createComment(asset_id:$asset_id, parent_id:$parent_id, body:$body) {
|
|
...commentView
|
|
}
|
|
}
|