typeDefs.js
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const { gql } = require("apollo-server");
module.exports = gql`
type Post {
id: ID!
body: String!
createdAt: String!
username: String!
comments: [Comment]!
likes: [Like]!
likeCount: Int!
commentCount: Int!
}
type Comment {
id: ID!
body: String!
username: String!
createdAt: String!
}
type Like {
id: ID!
username: String!
createdAt: String!
}
type Query {
getPosts: [Post]
getPost(postId: ID!): Post
}
type User {
id: ID!
email: String!
username: String!
createdAt: String!
token: String!
}
input RegisterInput {
username: String!
email: String!
password: String!
confirmPassword: String!
}
type Mutation {
register(registerInput: RegisterInput): User!
login(username: String!, password: String!): User!
createPost(body: String!): Post!
deletePost(postId: ID!): String!
createComment(postId: ID!, body: String!): Post!
deleteComment(postId: ID!, commentId: ID!): Post!
likePost(postId: ID!): Post!
}
`;