models.graphql
644 Bytes
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
type User {
id: ID!
avatarUrl: String
username: String!
email: String!
password: String!
phoneNum: String
emailSecret: String
phoneSecret: String
bio: String
groups: [Group]
messages: [Message]
directMessages: [DirectMessage]
createdAt: String
}
type Group {
id: ID!
name: String!
participants: [User]
creator: User
messages: [Message]
files: String
createdAt: String
}
type DirectMessage {
id: ID!
text: String!
sender: User!
createdAt: String
}
type Message {
id: ID!
text: String!
sender: User!
group: Group!
createdAt: String
}
type AuthPayload {
token: String
user: User
}