-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathschema.gql
364 lines (329 loc) · 7.42 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type Availability {
id: ID!
mentorId: String!
weekDay: Int!
startHour: String!
period: String
endHour: String!
active: Boolean!
startDate: String
endDate: String
}
type NotificationData {
id: ID!
title: String!
description: String!
imageUrl: String
notifierId: ID
updatedAt: DateTime!
createdAt: DateTime!
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
type Notification {
id: ID!
notificationDataId: ID!
userId: ID!
read: Boolean!
data: NotificationData!
}
type User {
id: ID!
email: String!
password: String
active: Boolean
firstName: String!
lastName: String
photoUrl: String
yearsOfExperience: Float
isEmailVerified: Boolean!
isTermsAccepted: Boolean!
onBoardingCompleted: Boolean!
createdAt: DateTime!
updatedAt: DateTime!
googleId: String
facebookId: String
birthDate: DateTime
country: String
state: String
city: String
skills: [String!]
linkedin: String
github: String
website: String
jobTitle: String
jobCompany: String
biography: String
description: String
isMentor: Boolean
status: String
availability: [Availability!]
notifications: [Notification!]
}
type Event {
id: ID!
mentorId: String!
participants: [User!]!
status: String!
startDate: String!
endDate: String!
active: Boolean!
meetLink: String!
}
type ParticipantInfo {
user: User!
assignedBy: String!
assignedAt: DateTime!
}
type CreateEventOutput {
id: ID!
mentorId: String!
participants: [ParticipantInfo!]!
startDate: String!
meetingLink: String!
endDate: String!
status: String!
active: Boolean!
}
type Skill {
id: ID!
name: String!
}
type Testimony {
id: ID!
mentorId: String!
learnerId: String!
text: String!
}
type CreateTestimonyOutput {
id: ID!
mentorId: String!
learnerId: String!
text: String!
}
type Recommendation {
id: ID!
mentorId: String!
learnerId: String!
text: String!
approved: Boolean!
}
type Query {
sayHello: String!
findMentors(findMentorsInput: FindMentorInput!): [User!]!
findOneMentor(id: String!): User!
findAllUsers(getUsersInput: getUsers!): [User!]!
me: User!
isUserLogged: Boolean!
findMentorAvailability(mentorId: String!): User!
findEvents(learnerId: String, mentorId: String): [CreateEventOutput!]!
findOneEvent(id: String!): CreateEventOutput!
findAllSkills: [Skill!]!
skill(id: Int!): Skill!
findNotifications(userId: String): [Notification!]!
findOneNotification(id: String!): Notification
findTestimonies(learnerId: String, mentorId: String): [CreateTestimonyOutput!]!
findOneTestimony(id: String!): [CreateTestimonyOutput!]!
}
input FindMentorInput {
firstName: String
skills: [String!]
period: String
limit: Float
orderBy: String
order: String
pageNumber: Float
pageSize: Float
skip: Float
take: Float
}
input getUsers {
firstName: String
skills: [String!]
period: String
limit: Float
orderBy: String
order: String
pageNumber: Float
pageSize: Float
skip: Float
take: Float
isMentor: Boolean
}
type Mutation {
signUpUser(userInput: CreateUserInput!): Boolean!
updateUser(userInput: UpdateUserDto!): User!
changePassword(changePasswordInput: ChangePasswordInputDto!): Boolean!
signInUser(userInput: SignInUserInput!): Boolean!
deactivateAccount(id: String!): Boolean!
signOutUser: Boolean!
updateUserPhoto(file: Upload!, userId: String!): Boolean!
resetUserPassword(userInput: ResetPasswordInput!): Boolean!
sendResetPassword(email: String!): Boolean!
createAvailability(createAvailabilityInput: CreateAvailabilityInput!): User!
updateAvailability(updateAvailabilityInput: UpdateAvailabilityInput!): Availability!
removeAvailability(id: Int!): Availability!
createEvent(createEventInput: CreateEventInput!): Event!
updateEvent(updateEventInput: UpdateEventInput!): Event!
removeEvent(id: Int!): Event!
createSkill(createSkillInput: CreateSkillInput!): Skill!
updateSkill(updateSkillInput: UpdateSkillInput!): Skill!
removeSkill(id: Int!): Skill!
createNotification(createNotificationInput: CreateNotificationInput!): NotificationData!
updateNotification(updateNotificationInput: UpdateNotificationInput!): NotificationData!
markRead(id: String!): Notification!
removeNotification(id: ID!): Boolean!
createTestimony(createTestimonyInput: CreateTestimonyInput!): Testimony!
updateTestimony(UpdateTestimonyInput: UpdateTestimonyInput!): Testimony!
deleteTestimony(id: Int!): Testimony!
createRecommendation(createRecommendationInput: CreateRecommendationInput!): Recommendation!
updateApproved(updateApprovedInput: UpdateApprovedInput!): Recommendation!
}
input CreateUserInput {
firstName: String!
lastName: String!
email: String!
password: String!
photoUrl: String
yearsOfExperience: Float
skills: [String!]!
birthDate: DateTime
country: String!
state: String!
city: String!
linkedin: String
github: String
website: String
jobTitle: String
jobCompany: String
biography: String
description: String!
isMentor: Boolean
facebookId: String
googleId: String
status: String
}
input UpdateUserDto {
firstName: String
lastName: String
email: String
password: String
photoUrl: String
yearsOfExperience: Float
skills: [String!]
birthDate: DateTime
country: String
state: String
city: String
linkedin: String
github: String
website: String
jobTitle: String
jobCompany: String
biography: String
description: String
isMentor: Boolean
facebookId: String
googleId: String
status: String
id: String!
}
input ChangePasswordInputDto {
userId: String!
newPassword: String!
}
input SignInUserInput {
email: String!
password: String!
rememberMe: Boolean
}
"""The `Upload` scalar type represents a file upload."""
scalar Upload
input ResetPasswordInput {
email: String!
pin: String!
newPassword: String!
}
input CreateAvailabilityInput {
mentorId: ID!
availabilities: [AvailabilityInput!]
}
input AvailabilityInput {
weekDay: Int!
startHour: String!
endHour: String!
active: Boolean!
period: String
}
input UpdateAvailabilityInput {
mentorId: ID
availabilities: [AvailabilityInput!]
id: Int!
}
input CreateEventInput {
mentorId: String!
learnerId: String!
startDate: String!
endDate: String!
status: String!
active: Boolean!
}
input UpdateEventInput {
mentorId: String
learnerId: String
startDate: String
endDate: String
status: String
active: Boolean
id: String!
}
input CreateSkillInput {
"""Example field (placeholder)"""
exampleField: Int!
}
input UpdateSkillInput {
"""Example field (placeholder)"""
exampleField: Int
id: Int!
}
input CreateNotificationInput {
title: String!
description: String!
imageUrl: String
notifierId: ID
usersIds: [String!]!
}
input UpdateNotificationInput {
title: String
description: String
imageUrl: String
notifierId: ID
usersIds: [String!]
id: String!
}
input CreateTestimonyInput {
mentorId: String!
learnerId: String!
text: String!
}
input UpdateTestimonyInput {
mentorId: String
learnerId: String
text: String
id: String!
}
input CreateRecommendationInput {
mentorId: String!
learnerId: String!
text: String!
approved: Boolean!
}
input UpdateApprovedInput {
id: String!
approved: Boolean!
}