-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathschema.graphql
395 lines (328 loc) · 8.68 KB
/
schema.graphql
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# source: http://127.0.0.1:8000/graphql
# timestamp: Tue Aug 16 2022 18:29:23 GMT+0430 (Iran Daylight Time)
input AdjustProjectReviewMutationInput {
projectReviewId: ID!
approvedByManager: Boolean
reviewersId: [ID!]
clientMutationId: String
}
type AdjustProjectReviewMutationPayload {
viewer: ViewerNode!
projectReview: ProjectReviewNode
clientMutationId: String
}
input AnswerInput {
questionId: ID!
value: String
}
type AnswerOutput {
value: String
questionId: ID!
}
input ChangePasswordMutationInput {
oldPassword: String!
newPassword: String!
clientMutationId: String
}
type ChangePasswordMutationPayload {
viewer: ViewerNode!
ok: Boolean!
clientMutationId: String
}
input CreateProjectReviewMutationInput {
projectName: String
clientMutationId: String
}
type CreateProjectReviewMutationPayload {
viewer: ViewerNode!
projectReview: ProjectReviewNode
clientMutationId: String
}
input DeleteProjectReviewMutationInput {
projectReviewId: ID!
clientMutationId: String
}
type DeleteProjectReviewMutationPayload {
viewer: ViewerNode!
deletedProjectReviewId: ID
clientMutationId: String
}
input EditProjectReviewMutationInput {
projectReviewId: ID!
projectName: String
answers: [AnswerInput!]
rating: Evaluation
consultedWithManager: Boolean
reviewersId: [ID!]
clientMutationId: String
}
type EditProjectReviewMutationPayload {
viewer: ViewerNode!
projectReview: ProjectReviewNode
clientMutationId: String
}
"""An enumeration."""
enum Evaluation {
NEEDS_IMPROVEMENT
MEETS_EXPECTATIONS
EXCEEDS_EXPECTATIONS
SUPERB
}
input LoginMutationInput {
username: String!
password: String!
clientMutationId: String
}
type LoginMutationPayload {
viewer: ViewerNode!
user: UserNode
clientMutationId: String
}
input LogoutMutationInput {
clientMutationId: String
}
type LogoutMutationPayload {
viewer: ViewerNode!
clientMutationId: String
}
type ManagerPersonReviewNode implements Node {
reviewee: UserNode!
strengths: [String!]
weaknesses: [String!]
"""The ID of the object."""
id: ID!
overallRating: Evaluation
}
type ManagerProjectCommentNode implements Node {
projectReview: ProjectReviewNode!
"""The ID of the object."""
id: ID!
rating: Evaluation
answers: [AnswerOutput!]!
}
type Mutation {
savePersonReview(input: SavePersonReviewMutationInput!): SavePersonReviewMutationPayload!
createProjectReview(input: CreateProjectReviewMutationInput!): CreateProjectReviewMutationPayload!
editProjectReview(input: EditProjectReviewMutationInput!): EditProjectReviewMutationPayload!
deleteProjectReview(input: DeleteProjectReviewMutationInput!): DeleteProjectReviewMutationPayload!
adjustProjectReview(input: AdjustProjectReviewMutationInput!): AdjustProjectReviewMutationPayload!
saveProjectComment(input: SaveProjectCommentMutationInput!): SaveProjectCommentMutationPayload!
saveManagerPersonReview(input: SaveManagerPersonReviewMutationInput!): SaveManagerPersonReviewMutationPayload!
saveManagerProjectComment(input: SaveManagerProjectCommentMutationInput!): SaveManagerProjectCommentMutationPayload!
startReview(input: StartReviewMutationInput!): StartReviewMutationPayload!
login(input: LoginMutationInput!): LoginMutationPayload!
logout(input: LogoutMutationInput!): LogoutMutationPayload!
changePassword(input: ChangePasswordMutationInput!): ChangePasswordMutationPayload!
}
"""An object with an ID"""
interface Node {
"""The ID of the object."""
id: ID!
}
type PersonReviewNode implements Node {
reviewee: UserNode!
strengths: [String!]
weaknesses: [String!]
"""The ID of the object."""
id: ID!
state: State!
reviewer: UserNode
isSelfReview: Boolean!
}
"""An enumeration."""
enum Phase {
SELF_REVIEW
PEER_REVIEW
MANAGER_REVIEW
RESULTS
IDLE
MANAGER_ADJUSTMENT
}
type ProjectCommentNode implements Node {
projectReview: ProjectReviewNode!
"""The ID of the object."""
id: ID!
reviewer: UserNode
rating: Evaluation
answers: [AnswerOutput!]!
}
type ProjectReviewNode implements Node {
projectName: String!
reviewee: UserNode!
consultedWithManager: Boolean!
approvedByManager: Boolean!
"""The ID of the object."""
id: ID!
rating: Evaluation
answers: [AnswerOutput!]!
reviewers: [UserNode!]!
"""
Get or create a project comment about this project review from the logged in user
"""
comment: ProjectCommentNode
comments: [ProjectCommentNode!]!
"""
Get (or create for manager) the manager project comment on this project review
"""
managerComment: ManagerProjectCommentNode
}
type Query {
viewer: ViewerNode!
}
type QuestionNode implements Node {
label: String!
order: Int!
helpText: String
choices: [String!]
"""For no limit, enter -1"""
maxChoices: Int!
privateAnswerToPeerReviewers: Boolean!
privateAnswerToReviewee: Boolean!
"""The ID of the object."""
id: ID!
questionType: QuestionType!
}
"""An enumeration."""
enum QuestionType {
TEXT
CHECKBOX_MULTIPLE
}
type RoundNode implements Node {
title: String!
reviewersAreAnonymous: Boolean!
maxProjectReviews: Int!
maxReviewers: Int!
"""The ID of the object."""
id: ID!
phase: Phase!
participants: [UserNode!]!
selfReviewProjectQuestions: [QuestionNode!]!
peerReviewProjectQuestions: [QuestionNode!]!
managerReviewProjectQuestions: [QuestionNode!]!
}
input SaveManagerPersonReviewMutationInput {
revieweeId: ID!
strengths: [String!]
weaknesses: [String!]
overallRating: Evaluation
clientMutationId: String
}
type SaveManagerPersonReviewMutationPayload {
viewer: ViewerNode!
managerPersonReview: ManagerPersonReviewNode
clientMutationId: String
}
input SaveManagerProjectCommentMutationInput {
projectReviewId: ID!
rating: Evaluation
answers: [AnswerInput!]
clientMutationId: String
}
type SaveManagerProjectCommentMutationPayload {
viewer: ViewerNode!
managerProjectComment: ManagerProjectCommentNode
clientMutationId: String
}
input SavePersonReviewMutationInput {
revieweeId: ID!
strengths: [String!]
weaknesses: [String!]
state: State
clientMutationId: String
}
type SavePersonReviewMutationPayload {
viewer: ViewerNode!
personReview: PersonReviewNode
clientMutationId: String
}
input SaveProjectCommentMutationInput {
projectReviewId: ID!
answers: [AnswerInput!]
rating: Evaluation
clientMutationId: String
}
type SaveProjectCommentMutationPayload {
viewer: ViewerNode!
projectComment: ProjectCommentNode
clientMutationId: String
}
type SettingsNode implements Node {
idlePageUrl: String
loginBackgroundImage: String
logoUrl: String
lightLogoUrl: String
"""The ID of the object."""
id: ID!
phase: Phase!
startText: String
managerOverallReviewText: String
}
input StartReviewMutationInput {
clientMutationId: String
}
type StartReviewMutationPayload {
viewer: ViewerNode!
ok: Boolean!
clientMutationId: String
}
"""An enumeration."""
enum State {
TODO
DOING
DONE
}
type UserNode implements Node {
"""Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only."""
username: String!
firstName: String!
lastName: String!
manager: UserNode
avatarUrl: String
isHr: Boolean!
"""The ID of the object."""
id: ID!
isManager: Boolean!
"""Get (or create for self) a self person review about this user"""
selfPersonReview: PersonReviewNode
"""Get (or create for peer) a peer person review about this user"""
peerPersonReview: PersonReviewNode
"""List of person reviews about this user"""
personReviews: [PersonReviewNode!]!
"""List of project reviews about this user"""
projectReviews: [ProjectReviewNode!]!
"""Get (or create for manager) a manager person review about this user"""
managerPersonReview: ManagerPersonReviewNode
hasStarted: Boolean
ranking1: String
ranking2: String
}
type ViewerNode implements Node {
"""The ID of the object."""
id: ID!
users: [UserNode!]!
"""The ID of the object"""
user(id: ID!): UserNode
me: UserNode
"""The ID of the object"""
round(id: ID!): RoundNode
activeRound: RoundNode!
rounds: [RoundNode!]!
"""The ID of the object"""
managerProjectComment(id: ID!): ManagerProjectCommentNode
managerProjectComments: [ManagerProjectCommentNode!]!
"""The ID of the object"""
managerPersonReview(id: ID!): ManagerPersonReviewNode
managerPersonReviews: [ManagerPersonReviewNode!]!
"""The ID of the object"""
projectComment(id: ID!): ProjectCommentNode
projectComments: [ProjectCommentNode!]!
"""The ID of the object"""
projectReview(id: ID!): ProjectReviewNode
projectReviews(revieweeId: ID): [ProjectReviewNode!]!
usersToReview: [UserNode!]!
settings: SettingsNode!
"""The ID of the object"""
personReview(id: ID!): PersonReviewNode
personReviews: [PersonReviewNode!]!
node(id: ID!): Node
}