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-14 03:03:07 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6478a434c7833f5dfbf0efd005c72be3bfcdc5b2
6478a434
1 parent
76c304d2
update graphql schema
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
back/src/api/models.graphql
back/src/api/models.graphql
View file @
6478a43
type User {
id: ID!
avatarUrl: String
name: String
email: String
profile: Profile
loginSecret: String
bio: String
rooms: [Room]
createdAt: String
}
type
Profile
{
type
Room
{
id: ID!
bio: String
user: User
createAt: String
participants: [User]
categories: [Category]
}
type Category {
id: ID!
name: String
rooms: [Room]
}
type Message {
id: ID!
text: String
sender: User
}
...
...
Please
register
or
login
to post a comment