This commit is contained in:
2021-11-25 05:45:28 +03:00
6 changed files with 52 additions and 19 deletions

View File

@@ -100,6 +100,10 @@ type Mutation {
updateComment(id: Int!, body: String!): CommentResult!
deleteComment(id: Int!): Result!
rateComment(id: Int!, value: Int!): Result!
createCommunity(title: String!, desc: String!): Community!
updateCommunity(id: Int!, title: String!, desc: String!, pic: String!): Community!
deleteCommunity(id: Int!): Result!
}
################################### Query