Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-04-19 16:11:55 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b6e477176bec2f5e7c138c0d3e1b8c652709d8e4
b6e47717
1 parent
a45d02c1
update graphql schema
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
back/src/api/models.graphql
back/src/api/models.graphql
View file @
b6e4771
...
...
@@ -2,7 +2,8 @@ type User {
id: ID!
avatarUrl: String
name: String
email: String
email: String!
password: String
loginSecret: String
bio: String
rooms: [Room]
...
...
@@ -26,3 +27,8 @@ type Message {
text: String
sender: User
}
type AuthPayload {
token: String
user: User
}
...
...
Please
register
or
login
to post a comment