-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
99 lines (88 loc) · 1.73 KB
/
schema.graphql
File metadata and controls
99 lines (88 loc) · 1.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
type Query {
users(query: ID, first: Int, skip: Int): [User!]!
posts(query: String, first: Int, skip: Int): [Post!]!
comments(first: Int, skip: Int): [Comment!]!
post(postId: ID!): Post!
me: User!
}
type Mutation {
createUser(data: CreateUserInput!): AuthPayload!
deleteUser: User!
updateUser(data: updateUserInput!): User!
createPost(data: CreatePostInput!): Post!
deletePost(postId: ID!): Post!
updatePost(postId: ID!, data: UpdatePostInput!): Post!
createComment(data: CreateCommentInput!): Comment!
deleteComment(commentId: ID!): Comment!
updateComment(data: UpdateCommentInput!, commentId: ID!): Comment!
login(data: LoginInput!): AuthPayload!
}
type Subscription {
comment(postId: ID!): CommentSubscriptionPayload!
post: PostSubscriptionPayload!
}
input CreateUserInput {
name: String!
email: String!
password: String!
}
input updateUserInput {
name: String
email: String
password: String
}
input CreatePostInput {
title: String!
body: String!
published: Boolean!
}
input UpdatePostInput {
title: String
body: String
published: Boolean
}
input CreateCommentInput {
text: String!
post: ID!
}
input UpdateCommentInput {
text: String
}
input LoginInput {
email: String!
password: String!
}
type User {
id: ID!
name: String!
email: String
password: String!
posts: [Post!]!
comments: [Comment!]!
}
type Post {
id: ID!
title: String!
body: String!
published: Boolean!
author: User!
comments: [Comment!]!
}
type Comment {
id: ID!
text: String!
author: User!
post: Post!
}
type PostSubscriptionPayload {
mutation: String!
node: Post
}
type CommentSubscriptionPayload {
mutation: String!
node: Comment
}
type AuthPayload {
user: User!
token: String!
}