mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
25 lines
442 B
JavaScript
25 lines
442 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export default () => {
|
|
return {
|
|
CreateComment: gql`
|
|
mutation($postId: ID!, $content: String!) {
|
|
CreateComment(postId: $postId, content: $content) {
|
|
id
|
|
contentExcerpt
|
|
content
|
|
author {
|
|
id
|
|
slug
|
|
name
|
|
avatar
|
|
}
|
|
createdAt
|
|
deleted
|
|
disabled
|
|
}
|
|
}
|
|
`,
|
|
}
|
|
}
|