-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
406 lines (341 loc) · 8.16 KB
/
schema.graphql
File metadata and controls
406 lines (341 loc) · 8.16 KB
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
396
397
398
399
400
401
402
403
404
405
406
directive @oneOf on INPUT_OBJECT
type AppEnumCollection {
QuestionTypeEnum: [AppEnumCollectionQuestionTypeEnum!]!
OrdinalTypeEnum: [AppEnumCollectionOrdinalTypeEnum!]!
}
type AppEnumCollectionOrdinalTypeEnum {
key: OrdinalTypeEnum!
label: String!
value: Int!
}
type AppEnumCollectionQuestionTypeEnum {
key: QuestionTypeEnum!
label: String!
value: Int!
}
"""Model representing case study of national society for specific tool."""
input CaseStudyFilter {
id: ID
tool: ToolFilter
AND: CaseStudyFilter
OR: CaseStudyFilter
NOT: CaseStudyFilter
DISTINCT: Boolean
}
input CaseStudyOrder @oneOf {
id: Ordering
}
"""Model representing case study of national society for specific tool."""
type CaseStudyType {
id: ID!
title: String!
toolId: ID!
content: String!
coverImage: DjangoFileType
link: String!
}
type CaseStudyTypeOffsetPaginated {
pageInfo: OffsetPaginationInfo!
"""Total count of existing results."""
totalCount: Int!
"""List of paginated results."""
results: [CaseStudyType!]!
}
"""Model representing catalog where a tool belongs to."""
input CatalogFilter {
id: ID
showInHelpMeChoose: Boolean
AND: CatalogFilter
OR: CatalogFilter
NOT: CatalogFilter
DISTINCT: Boolean
}
input CatalogOrder @oneOf {
id: Ordering
}
"""Model representing catalog where a tool belongs to."""
type CatalogType {
id: ID!
name: String!
showInHelpMeChoose: Boolean!
description: String!
questions: [QuestionType!]!
}
type CatalogTypeOffsetPaginated {
pageInfo: OffsetPaginationInfo!
"""Total count of existing results."""
totalCount: Int!
"""List of paginated results."""
results: [CatalogType!]!
}
"""Model representing option of checkbox question."""
type CheckboxOptionType {
id: ID!
question: QuestionTitleType!
order: Int!
text: String!
}
input ContactRequestInput {
name: String!
email: String!
nationalSociety: String!
content: String!
captchaHashkey: String!
captchaCode: String!
}
"""Model representing contact where anyone can react out to the admins."""
type ContactRequestType {
id: ID!
name: String!
email: String!
createdAt: DateTime!
content: String
nationalSociety: String!
}
type ContactRequestTypeMutationResponseType {
ok: Boolean!
errors: CustomErrorType
result: ContactRequestType
}
union CreateContactRequestPayload = ContactRequestTypeMutationResponseType | OperationInfo
union CreateDemoRequestPayload = RequestDemoTypeMutationResponseType | OperationInfo
union CreateUserSubmissionPayload = UserSubmissionTypeMutationResponseType | OperationInfo
"""A generic type to return error messages"""
scalar CustomErrorType
"""Date with time (isoformat)"""
scalar DateTime
type DjangoFileType {
name: String!
size: Int!
url: String!
}
type DjangoModelType {
pk: ID!
}
type Mutation {
createContactRequest(data: ContactRequestInput!): CreateContactRequestPayload!
createDemoRequest(data: RequestDemoInput!): CreateDemoRequestPayload!
createUserSubmission(data: UserSubmissionInput!): CreateUserSubmissionPayload!
}
type OffsetPaginationInfo {
offset: Int!
limit: Int
}
input OffsetPaginationInput {
offset: Int! = 0
limit: Int
}
type OperationInfo {
"""List of messages returned by the operation."""
messages: [OperationMessage!]!
}
type OperationMessage {
"""The kind of this message."""
kind: OperationMessageKind!
"""The error message."""
message: String!
"""
The field that caused the error, or `null` if it isn't associated with any particular field.
"""
field: String
"""The error code, or `null` if no error code was set."""
code: String
}
enum OperationMessageKind {
INFO
WARNING
ERROR
PERMISSION
VALIDATION
}
enum Ordering {
ASC
ASC_NULLS_FIRST
ASC_NULLS_LAST
DESC
DESC_NULLS_FIRST
DESC_NULLS_LAST
}
enum OrdinalTypeEnum {
NOT_AVAILABLE
ONE
TWO
THREE
FOUR
}
type Query {
catalogs(pagination: OffsetPaginationInput, filters: CatalogFilter, order: CatalogOrder): CatalogTypeOffsetPaginated!
catalog(id: ID!): CatalogType!
tools(pagination: OffsetPaginationInput, filters: ToolFilter, order: ToolOrder): ToolTypeOffsetPaginated!
tool(id: ID!): ToolType!
recommendationResults(pagination: OffsetPaginationInput, filters: RecommendationResultFilter, order: RecommendationResultOrder): RecommendationResultTypeOffsetPaginated!
recommendationResult(id: ID!): RecommendationResultType!
caseStudies(pagination: OffsetPaginationInput, filters: CaseStudyFilter, order: CaseStudyOrder): CaseStudyTypeOffsetPaginated!
caseStudy(id: ID!): CaseStudyType!
me: UserMeType
enums: AppEnumCollection!
}
"""Model representing question within a catalog."""
type QuestionTitleType {
id: ID!
title: String!
questionType: QuestionTypeEnum!
description: String!
order: Int!
}
"""Model representing question within a catalog."""
type QuestionType {
id: ID!
catalogId: ID!
questionType: QuestionTypeEnum!
title: String!
description: String!
order: Int!
labelNa: String!
label1: String!
label2: String!
label3: String!
label4: String!
options: [CheckboxOptionType!]!
}
enum QuestionTypeEnum {
ORDINAL
CHECKBOX
}
"""Model representing recommended tools for a submission."""
input RecommendationResultFilter {
id: ID
submission: UserSubmissionFilter
AND: RecommendationResultFilter
OR: RecommendationResultFilter
NOT: RecommendationResultFilter
DISTINCT: Boolean
}
input RecommendationResultOrder @oneOf {
id: Ordering
rank: Ordering
}
"""Model representing recommended tools for a submission."""
type RecommendationResultType {
id: ID!
submission: UserSubmissionType!
rank: Int!
"""Proximity score - lower is better (closer match)"""
score: Float!
tool: ToolType!
}
type RecommendationResultTypeOffsetPaginated {
pageInfo: OffsetPaginationInfo!
"""Total count of existing results."""
totalCount: Int!
"""List of paginated results."""
results: [RecommendationResultType!]!
}
input RequestDemoInput {
name: String!
email: String!
content: String!
nationalSociety: String!
tool: Int!
captchaHashkey: String!
captchaCode: String!
}
"""
Model representing contact where anyone can request the tool demo to the admins.
"""
type RequestDemoType {
id: ID!
name: String!
email: String!
createdAt: DateTime!
content: String
nationalSociety: String!
tool: DjangoModelType!
}
type RequestDemoTypeMutationResponseType {
ok: Boolean!
errors: CustomErrorType
result: RequestDemoType
}
"""Model representing tool's selection of question and its answer."""
type ToolAnswerType {
id: ID!
toolId: ID!
question: QuestionTitleType!
description: String!
ordinalValue: Int
selectedOptions: [CheckboxOptionType!]!
}
"""Model representing tool."""
input ToolFilter {
id: ID
catalogs: CatalogFilter
AND: ToolFilter
OR: ToolFilter
NOT: ToolFilter
DISTINCT: Boolean
}
input ToolOrder @oneOf {
id: Ordering
}
"""Model representing tool."""
type ToolType {
id: ID!
catalogs: [CatalogType!]!
name: String!
tagline: String!
description: String!
videoLink: String
toolLink: String
logo: DjangoFileType
answers: [ToolAnswerType!]!
}
type ToolTypeOffsetPaginated {
pageInfo: OffsetPaginationInfo!
"""Total count of existing results."""
totalCount: Int!
"""List of paginated results."""
results: [ToolType!]!
}
input UserAnswerInput {
question: ID!
ordinalValue: Int
selectedOptions: [ID!]
}
"""Model representing a user's answer to a specific question."""
type UserAnswerType {
question: QuestionTitleType!
ordinalValue: Int
selectedOptions: [CheckboxOptionType!]!
}
"""Custom user model with email as unique identifier."""
type UserMeType {
id: ID!
firstName: String!
lastName: String!
displayName: String!
anonymizedEmail: String!
email: String!
}
"""Model representing a user's submission of answers for a catalog."""
input UserSubmissionFilter {
id: ID
AND: UserSubmissionFilter
OR: UserSubmissionFilter
NOT: UserSubmissionFilter
DISTINCT: Boolean
}
input UserSubmissionInput {
catalog: ID!
answers: [UserAnswerInput!]!
}
type UserSubmissionType {
id: ID!
catalogId: ID!
answers: [UserAnswerType!]!
}
type UserSubmissionTypeMutationResponseType {
ok: Boolean!
errors: CustomErrorType
result: UserSubmissionType
}