2020-07-09 15:24:28 +00:00
|
|
|
import gql from "graphql-tag";
|
|
|
|
|
|
|
|
export const DISCUSSION_BASIC_FIELDS_FRAGMENT = gql`
|
|
|
|
fragment DiscussionBasicFields on Discussion {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
slug
|
2020-08-27 09:53:24 +00:00
|
|
|
insertedAt
|
2020-08-14 09:32:23 +00:00
|
|
|
updatedAt
|
2020-07-09 15:24:28 +00:00
|
|
|
lastComment {
|
|
|
|
id
|
|
|
|
text
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
preferredUsername
|
2020-10-21 10:14:53 +00:00
|
|
|
domain
|
2020-07-09 15:24:28 +00:00
|
|
|
avatar {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 09:53:24 +00:00
|
|
|
publishedAt
|
2020-08-14 09:32:23 +00:00
|
|
|
deletedAt
|
2020-07-09 15:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const DISCUSSION_FIELDS_FOR_REPLY_FRAGMENT = gql`
|
|
|
|
fragment DiscussionFieldsReply on Discussion {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
slug
|
|
|
|
lastComment {
|
|
|
|
id
|
|
|
|
text
|
|
|
|
updatedAt
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
preferredUsername
|
2020-10-21 10:14:53 +00:00
|
|
|
domain
|
2020-07-09 15:24:28 +00:00
|
|
|
avatar {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
preferredUsername
|
2020-10-21 10:14:53 +00:00
|
|
|
domain
|
2020-07-09 15:24:28 +00:00
|
|
|
}
|
|
|
|
creator {
|
|
|
|
id
|
|
|
|
preferredUsername
|
2020-10-21 10:14:53 +00:00
|
|
|
domain
|
2020-07-09 15:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const DISCUSSION_FIELDS_FRAGMENT = gql`
|
|
|
|
fragment DiscussionFields on Discussion {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
slug
|
|
|
|
lastComment {
|
|
|
|
id
|
|
|
|
text
|
2020-08-19 07:01:34 +00:00
|
|
|
insertedAt
|
2020-07-09 15:24:28 +00:00
|
|
|
updatedAt
|
|
|
|
}
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
domain
|
|
|
|
name
|
|
|
|
preferredUsername
|
|
|
|
}
|
|
|
|
creator {
|
|
|
|
id
|
|
|
|
domain
|
|
|
|
name
|
|
|
|
preferredUsername
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const CREATE_DISCUSSION = gql`
|
|
|
|
mutation createDiscussion($title: String!, $creatorId: ID!, $actorId: ID!, $text: String!) {
|
|
|
|
createDiscussion(title: $title, text: $text, creatorId: $creatorId, actorId: $actorId) {
|
|
|
|
...DiscussionFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${DISCUSSION_FIELDS_FRAGMENT}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const REPLY_TO_DISCUSSION = gql`
|
|
|
|
mutation replyToDiscussion($discussionId: ID!, $text: String!) {
|
|
|
|
replyToDiscussion(discussionId: $discussionId, text: $text) {
|
|
|
|
...DiscussionFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${DISCUSSION_FIELDS_FRAGMENT}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const GET_DISCUSSION = gql`
|
|
|
|
query getDiscussion($slug: String!, $page: Int, $limit: Int) {
|
|
|
|
discussion(slug: $slug) {
|
|
|
|
comments(page: $page, limit: $limit)
|
2020-09-21 10:15:37 +00:00
|
|
|
@connection(key: "discussion-comments", filter: ["slug"]) {
|
2020-07-09 15:24:28 +00:00
|
|
|
total
|
|
|
|
elements {
|
|
|
|
id
|
|
|
|
text
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
avatar {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
name
|
|
|
|
domain
|
|
|
|
preferredUsername
|
|
|
|
}
|
|
|
|
insertedAt
|
|
|
|
updatedAt
|
2020-08-14 09:32:23 +00:00
|
|
|
deletedAt
|
2020-08-27 09:53:24 +00:00
|
|
|
publishedAt
|
2020-07-09 15:24:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
...DiscussionFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${DISCUSSION_FIELDS_FRAGMENT}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const UPDATE_DISCUSSION = gql`
|
|
|
|
mutation updateDiscussion($discussionId: ID!, $title: String!) {
|
|
|
|
updateDiscussion(discussionId: $discussionId, title: $title) {
|
|
|
|
...DiscussionFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${DISCUSSION_FIELDS_FRAGMENT}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const DELETE_DISCUSSION = gql`
|
|
|
|
mutation deleteDiscussion($discussionId: ID!) {
|
|
|
|
deleteDiscussion(discussionId: $discussionId) {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const DISCUSSION_COMMENT_CHANGED = gql`
|
|
|
|
subscription($slug: String!) {
|
|
|
|
discussionCommentChanged(slug: $slug) {
|
|
|
|
id
|
|
|
|
lastComment {
|
|
|
|
id
|
|
|
|
text
|
|
|
|
updatedAt
|
|
|
|
insertedAt
|
|
|
|
actor {
|
|
|
|
id
|
|
|
|
preferredUsername
|
2020-10-22 07:37:30 +00:00
|
|
|
name
|
2020-07-09 15:24:28 +00:00
|
|
|
domain
|
|
|
|
avatar {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|