-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.js
79 lines (69 loc) · 1.49 KB
/
schema.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { gql } from 'apollo-server-express';
// Construct a schema, using GraphQL schema language
const typeDefs = gql`
type Query {
users: [User]
user(_id: ID!): User
quotes(page: Int!, pageSize: Int!): [QuoteWithUser]
quote(_id: ID!): Quote
myProfile: User
fetchUsers(query: String!): [User]
}
type Mutation {
signUpUser(newUser: newUserInput!): User
signInUser(userSignIn: userSignInInput!): Token
updateUser(firstName: String!, lastName: String!, bio: String!): String
deleteUserWithQuotes(_id: ID!): String
verifyUser(token: String!): String
resetPassword(email: String!): String
setNewPassword(token: String!, password: String!): String
createQuote(name: String!): String
updateQuote(_id: ID!, name: String!): String
deleteQuote(_id: ID!): String
}
type Token {
token: String!
}
input newUserInput {
firstName: String!
lastName: String!
email: String!
password: String!
}
input userSignInInput {
email: String!
password: String!
}
type User {
_id: ID!
firstName: String!
lastName: String!
email: String!
password: String
profileImage: String!
bio: String!
verified: Boolean!
quotes: [Quote]
}
type Quote {
_id: ID!
name: String!
by: UserDetails!
createdAt: String!
updatedAt: String!
}
type QuoteWithUser {
_id: ID!
name: String!
by: UserDetails!
createdAt: String!
updatedAt: String!
}
type UserDetails {
_id: ID!
firstName: String!
lastName: String!
profileImage: String!
}
`;
export default typeDefs;