Showing
1 changed file
with
3 additions
and
1 deletions
... | @@ -4,10 +4,12 @@ type User { | ... | @@ -4,10 +4,12 @@ type User { |
4 | name: String | 4 | name: String |
5 | email: String! | 5 | email: String! |
6 | password: String | 6 | password: String |
7 | - loginSecret: String | 7 | + emailSecret: String |
8 | + phoneSecret: String | ||
8 | bio: String | 9 | bio: String |
9 | rooms: [Room] | 10 | rooms: [Room] |
10 | createdAt: String | 11 | createdAt: String |
12 | + messages: [Message] | ||
11 | } | 13 | } |
12 | 14 | ||
13 | type Room { | 15 | type Room { | ... | ... |
-
Please register or login to post a comment