34 lines
633 B
TypeScript
34 lines
633 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const CREATE_COMMENT = gql`
|
|
mutation CreateComment(
|
|
$commentId: String!
|
|
$commentText: String!
|
|
$authorId: String!
|
|
$activityId: String!
|
|
$createdAt: DateTime!
|
|
) {
|
|
createOneComment(
|
|
data: {
|
|
id: $commentId
|
|
createdAt: $createdAt
|
|
body: $commentText
|
|
author: { connect: { id: $authorId } }
|
|
activity: { connect: { id: $activityId } }
|
|
}
|
|
) {
|
|
id
|
|
createdAt
|
|
body
|
|
author {
|
|
id
|
|
displayName
|
|
firstName
|
|
lastName
|
|
avatarUrl
|
|
}
|
|
activityId
|
|
}
|
|
}
|
|
`;
|