-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.js
More file actions
45 lines (43 loc) · 1008 Bytes
/
schema.js
File metadata and controls
45 lines (43 loc) · 1008 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
39
40
41
42
43
44
45
const { buildSchema } = require('graphql');
module.exports = buildSchema(`
type Query {
hello: String
getGoogleAuthUrl: String
leaderboard: [ Rank ]
signIn (email: String!, password: String!) : User
}
type Mutation {
authenticate (code: String): User
signUp(
email: String!,
password: String!,
givenName: String!,
familyName: String!
) : User
promoteUser (_id: String, email: String) : GenericResult
}
type GenericResult {
success: Boolean
error: Error
}
type Error {
code: String
message: String
}
type User {
_id: String
googleId: String
email: String
givenName: String
familyName: String
imageUrl: String
jwtToken: String
role: String
points: Int
}
type Rank {
givenName: String
familyName: String
points: Int
}
`);