-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.graphql
More file actions
38 lines (32 loc) · 852 Bytes
/
schema.graphql
File metadata and controls
38 lines (32 loc) · 852 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
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
"""
A field whose value conforms to the standard internet email address format as specified in RFC822: https://www.w3.org/Protocols/rfc822/.
"""
scalar EmailAddress @specifiedBy(url: "https://www.w3.org/Protocols/rfc822/")
input LoginUserInput {
email: EmailAddress!
password: String!
}
type Mutation {
loginUser(input: LoginUserInput!): User!
logoutUser: Boolean!
registerUser(input: RegisterUserInput!): User!
}
type Query {
me: User
user(channelId: ID!): User
}
input RegisterUserInput {
email: EmailAddress!
name: String!
password: String!
}
type User {
channelId: ID!
email: EmailAddress!
id: ID!
name: String!
}