Files
talk/client/coral-framework/graphql/mutations/postComment.graphql
T
2017-01-25 11:04:23 -03:00

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
}
}