-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.gql
41 lines (33 loc) · 800 Bytes
/
schema.gql
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
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
type Mutation {
"""Signup a new user."""
signUp(
"""User full name."""
name: String!
"""User email."""
email: String!
"""User profile image URL."""
profileImg: String
): User!
}
type Query {
"""Returns an user by his email."""
user(
"""User email."""
email: String!
): User
"""Returns all registered users."""
users: [User!]!
}
"""User model."""
type User {
"""User full name."""
name: String!
"""User email. Mostly used for user identification and notification."""
email: String!
"""User profile image URL."""
profileImg: String
}