@quesmed/types 2.4.13 → 2.4.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/models/Picture.d.ts +6 -0
- package/dist/cjs/resolvers/fragments/marksheet.js +1 -0
- package/dist/cjs/resolvers/fragments/user.js +1 -0
- package/dist/cjs/resolvers/mutation/restricted/marksheet.js +12 -0
- package/dist/cjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/cjs/resolvers/query/restricted/marksheet.js +71 -58
- package/dist/cjs/resolvers/query/restricted/question.js +4 -0
- package/dist/cjs/resolvers/query/restricted/todos.js +1 -0
- package/dist/mjs/models/Picture.d.ts +6 -0
- package/dist/mjs/resolvers/fragments/marksheet.js +1 -0
- package/dist/mjs/resolvers/fragments/user.js +1 -0
- package/dist/mjs/resolvers/mutation/restricted/marksheet.js +12 -0
- package/dist/mjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/mjs/resolvers/query/restricted/marksheet.js +71 -58
- package/dist/mjs/resolvers/query/restricted/question.js +4 -0
- package/dist/mjs/resolvers/query/restricted/todos.js +1 -0
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export interface ICardPicture {
|
|
|
19
19
|
pictureId: Id;
|
|
20
20
|
cardId: Id;
|
|
21
21
|
picture: IPicture;
|
|
22
|
+
pictureIdx: number;
|
|
22
23
|
}
|
|
23
24
|
export interface IChapterPicture {
|
|
24
25
|
id: Id;
|
|
@@ -32,24 +33,28 @@ export interface IOsceActorPicture {
|
|
|
32
33
|
pictureId: Id;
|
|
33
34
|
osceStationId: Id;
|
|
34
35
|
picture: IPicture;
|
|
36
|
+
pictureIdx: number;
|
|
35
37
|
}
|
|
36
38
|
export interface IOsceCandidatePicture {
|
|
37
39
|
id: Id;
|
|
38
40
|
pictureId: Id;
|
|
39
41
|
osceStationId: Id;
|
|
40
42
|
picture: IPicture;
|
|
43
|
+
pictureIdx: number;
|
|
41
44
|
}
|
|
42
45
|
export interface IOsceExaminerPicture {
|
|
43
46
|
id: Id;
|
|
44
47
|
pictureId: Id;
|
|
45
48
|
osceStationId: Id;
|
|
46
49
|
picture: IPicture;
|
|
50
|
+
pictureIdx: number;
|
|
47
51
|
}
|
|
48
52
|
export interface IOsceWalkthroughPicture {
|
|
49
53
|
id: Id;
|
|
50
54
|
pictureId: Id;
|
|
51
55
|
osceStationId: Id;
|
|
52
56
|
picture: IPicture;
|
|
57
|
+
pictureIdx: number;
|
|
53
58
|
}
|
|
54
59
|
export interface IQuestionPicture {
|
|
55
60
|
id: Id;
|
|
@@ -57,4 +62,5 @@ export interface IQuestionPicture {
|
|
|
57
62
|
questionId: Id;
|
|
58
63
|
choiceId: Id | null;
|
|
59
64
|
picture: IPicture;
|
|
65
|
+
pictureIdx: number;
|
|
60
66
|
}
|
|
@@ -167,6 +167,7 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
167
167
|
createdAt
|
|
168
168
|
updatedAt
|
|
169
169
|
name
|
|
170
|
+
index
|
|
170
171
|
caption
|
|
171
172
|
path
|
|
172
173
|
path512
|
|
@@ -295,6 +296,7 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
295
296
|
createdAt
|
|
296
297
|
updatedAt
|
|
297
298
|
name
|
|
299
|
+
index
|
|
298
300
|
caption
|
|
299
301
|
path
|
|
300
302
|
path512
|
|
@@ -426,6 +428,7 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
426
428
|
createdAt
|
|
427
429
|
updatedAt
|
|
428
430
|
name
|
|
431
|
+
index
|
|
429
432
|
caption
|
|
430
433
|
path
|
|
431
434
|
path512
|
|
@@ -555,6 +558,7 @@ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
|
|
|
555
558
|
updatedAt
|
|
556
559
|
name
|
|
557
560
|
caption
|
|
561
|
+
index
|
|
558
562
|
path
|
|
559
563
|
path512
|
|
560
564
|
path256
|
|
@@ -779,6 +783,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
779
783
|
name
|
|
780
784
|
caption
|
|
781
785
|
path
|
|
786
|
+
index
|
|
782
787
|
path512
|
|
783
788
|
path256
|
|
784
789
|
topicId
|
|
@@ -906,6 +911,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
906
911
|
updatedAt
|
|
907
912
|
name
|
|
908
913
|
caption
|
|
914
|
+
index
|
|
909
915
|
path
|
|
910
916
|
path512
|
|
911
917
|
path256
|
|
@@ -1036,6 +1042,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1036
1042
|
createdAt
|
|
1037
1043
|
updatedAt
|
|
1038
1044
|
name
|
|
1045
|
+
index
|
|
1039
1046
|
caption
|
|
1040
1047
|
path
|
|
1041
1048
|
path512
|
|
@@ -1164,6 +1171,7 @@ exports.BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1164
1171
|
createdAt
|
|
1165
1172
|
updatedAt
|
|
1166
1173
|
name
|
|
1174
|
+
index
|
|
1167
1175
|
caption
|
|
1168
1176
|
path
|
|
1169
1177
|
path512
|
|
@@ -1392,6 +1400,7 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1392
1400
|
createdAt
|
|
1393
1401
|
updatedAt
|
|
1394
1402
|
name
|
|
1403
|
+
index
|
|
1395
1404
|
caption
|
|
1396
1405
|
path
|
|
1397
1406
|
path512
|
|
@@ -1520,6 +1529,7 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1520
1529
|
createdAt
|
|
1521
1530
|
updatedAt
|
|
1522
1531
|
name
|
|
1532
|
+
index
|
|
1523
1533
|
caption
|
|
1524
1534
|
path
|
|
1525
1535
|
path512
|
|
@@ -1651,6 +1661,7 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1651
1661
|
createdAt
|
|
1652
1662
|
updatedAt
|
|
1653
1663
|
name
|
|
1664
|
+
index
|
|
1654
1665
|
caption
|
|
1655
1666
|
path
|
|
1656
1667
|
path512
|
|
@@ -1779,6 +1790,7 @@ exports.RE_BUILD_MARKSHEET = (0, client_1.gql) `
|
|
|
1779
1790
|
createdAt
|
|
1780
1791
|
updatedAt
|
|
1781
1792
|
name
|
|
1793
|
+
index
|
|
1782
1794
|
caption
|
|
1783
1795
|
path
|
|
1784
1796
|
path512
|
|
@@ -75,12 +75,12 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
75
75
|
totalVotes
|
|
76
76
|
typeId
|
|
77
77
|
highlights {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
78
|
+
start
|
|
79
|
+
end
|
|
80
|
+
text
|
|
81
|
+
part
|
|
82
|
+
tag
|
|
83
|
+
color
|
|
84
84
|
}
|
|
85
85
|
choices {
|
|
86
86
|
id
|
|
@@ -173,6 +173,7 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
173
173
|
createdAt
|
|
174
174
|
updatedAt
|
|
175
175
|
name
|
|
176
|
+
index
|
|
176
177
|
caption
|
|
177
178
|
path
|
|
178
179
|
path512
|
|
@@ -203,12 +204,12 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
203
204
|
totalVotes
|
|
204
205
|
typeId
|
|
205
206
|
highlights {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
207
|
+
start
|
|
208
|
+
end
|
|
209
|
+
text
|
|
210
|
+
part
|
|
211
|
+
tag
|
|
212
|
+
color
|
|
212
213
|
}
|
|
213
214
|
choices {
|
|
214
215
|
id
|
|
@@ -301,6 +302,7 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
301
302
|
createdAt
|
|
302
303
|
updatedAt
|
|
303
304
|
name
|
|
305
|
+
index
|
|
304
306
|
caption
|
|
305
307
|
path
|
|
306
308
|
path512
|
|
@@ -334,12 +336,12 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
334
336
|
totalVotes
|
|
335
337
|
typeId
|
|
336
338
|
highlights {
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
339
|
+
start
|
|
340
|
+
end
|
|
341
|
+
text
|
|
342
|
+
part
|
|
343
|
+
tag
|
|
344
|
+
color
|
|
343
345
|
}
|
|
344
346
|
choices {
|
|
345
347
|
id
|
|
@@ -432,6 +434,7 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
432
434
|
createdAt
|
|
433
435
|
updatedAt
|
|
434
436
|
name
|
|
437
|
+
index
|
|
435
438
|
caption
|
|
436
439
|
path
|
|
437
440
|
path512
|
|
@@ -462,12 +465,12 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
462
465
|
totalVotes
|
|
463
466
|
typeId
|
|
464
467
|
highlights {
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
468
|
+
start
|
|
469
|
+
end
|
|
470
|
+
text
|
|
471
|
+
part
|
|
472
|
+
tag
|
|
473
|
+
color
|
|
471
474
|
}
|
|
472
475
|
choices {
|
|
473
476
|
id
|
|
@@ -560,6 +563,7 @@ exports.MARKSHEET = (0, client_1.gql) `
|
|
|
560
563
|
createdAt
|
|
561
564
|
updatedAt
|
|
562
565
|
name
|
|
566
|
+
index
|
|
563
567
|
caption
|
|
564
568
|
path
|
|
565
569
|
path512
|
|
@@ -670,13 +674,13 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
670
674
|
totalVotes
|
|
671
675
|
typeId
|
|
672
676
|
highlights {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
677
|
+
start
|
|
678
|
+
end
|
|
679
|
+
text
|
|
680
|
+
part
|
|
681
|
+
tag
|
|
682
|
+
color
|
|
683
|
+
}
|
|
680
684
|
choices {
|
|
681
685
|
id
|
|
682
686
|
explanation
|
|
@@ -772,6 +776,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
772
776
|
createdAt
|
|
773
777
|
updatedAt
|
|
774
778
|
name
|
|
779
|
+
index
|
|
775
780
|
caption
|
|
776
781
|
path
|
|
777
782
|
path512
|
|
@@ -811,7 +816,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
811
816
|
part
|
|
812
817
|
tag
|
|
813
818
|
color
|
|
814
|
-
|
|
819
|
+
}
|
|
815
820
|
choices {
|
|
816
821
|
id
|
|
817
822
|
explanation
|
|
@@ -903,6 +908,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
903
908
|
createdAt
|
|
904
909
|
updatedAt
|
|
905
910
|
name
|
|
911
|
+
index
|
|
906
912
|
caption
|
|
907
913
|
path
|
|
908
914
|
path512
|
|
@@ -1031,6 +1037,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1031
1037
|
createdAt
|
|
1032
1038
|
updatedAt
|
|
1033
1039
|
name
|
|
1040
|
+
index
|
|
1034
1041
|
caption
|
|
1035
1042
|
path
|
|
1036
1043
|
path512
|
|
@@ -1070,7 +1077,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1070
1077
|
part
|
|
1071
1078
|
tag
|
|
1072
1079
|
color
|
|
1073
|
-
|
|
1080
|
+
}
|
|
1074
1081
|
choices {
|
|
1075
1082
|
id
|
|
1076
1083
|
explanation
|
|
@@ -1162,6 +1169,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1162
1169
|
createdAt
|
|
1163
1170
|
updatedAt
|
|
1164
1171
|
name
|
|
1172
|
+
index
|
|
1165
1173
|
caption
|
|
1166
1174
|
path
|
|
1167
1175
|
path512
|
|
@@ -1198,7 +1206,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1198
1206
|
part
|
|
1199
1207
|
tag
|
|
1200
1208
|
color
|
|
1201
|
-
|
|
1209
|
+
}
|
|
1202
1210
|
choices {
|
|
1203
1211
|
id
|
|
1204
1212
|
explanation
|
|
@@ -1290,6 +1298,7 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
|
|
|
1290
1298
|
createdAt
|
|
1291
1299
|
updatedAt
|
|
1292
1300
|
name
|
|
1301
|
+
index
|
|
1293
1302
|
caption
|
|
1294
1303
|
path
|
|
1295
1304
|
path512
|
|
@@ -1408,12 +1417,12 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1408
1417
|
totalVotes
|
|
1409
1418
|
typeId
|
|
1410
1419
|
highlights {
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1420
|
+
start
|
|
1421
|
+
end
|
|
1422
|
+
text
|
|
1423
|
+
part
|
|
1424
|
+
tag
|
|
1425
|
+
color
|
|
1417
1426
|
}
|
|
1418
1427
|
choices {
|
|
1419
1428
|
id
|
|
@@ -1506,6 +1515,7 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1506
1515
|
createdAt
|
|
1507
1516
|
updatedAt
|
|
1508
1517
|
name
|
|
1518
|
+
index
|
|
1509
1519
|
caption
|
|
1510
1520
|
path
|
|
1511
1521
|
path512
|
|
@@ -1536,12 +1546,12 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1536
1546
|
totalVotes
|
|
1537
1547
|
typeId
|
|
1538
1548
|
highlights {
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1549
|
+
start
|
|
1550
|
+
end
|
|
1551
|
+
text
|
|
1552
|
+
part
|
|
1553
|
+
tag
|
|
1554
|
+
color
|
|
1545
1555
|
}
|
|
1546
1556
|
choices {
|
|
1547
1557
|
id
|
|
@@ -1634,6 +1644,7 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1634
1644
|
createdAt
|
|
1635
1645
|
updatedAt
|
|
1636
1646
|
name
|
|
1647
|
+
index
|
|
1637
1648
|
caption
|
|
1638
1649
|
path
|
|
1639
1650
|
path512
|
|
@@ -1667,12 +1678,12 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1667
1678
|
totalVotes
|
|
1668
1679
|
typeId
|
|
1669
1680
|
highlights {
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1681
|
+
start
|
|
1682
|
+
end
|
|
1683
|
+
text
|
|
1684
|
+
part
|
|
1685
|
+
tag
|
|
1686
|
+
color
|
|
1676
1687
|
}
|
|
1677
1688
|
choices {
|
|
1678
1689
|
id
|
|
@@ -1765,6 +1776,7 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1765
1776
|
createdAt
|
|
1766
1777
|
updatedAt
|
|
1767
1778
|
name
|
|
1779
|
+
index
|
|
1768
1780
|
caption
|
|
1769
1781
|
path
|
|
1770
1782
|
path512
|
|
@@ -1795,12 +1807,12 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1795
1807
|
totalVotes
|
|
1796
1808
|
typeId
|
|
1797
1809
|
highlights {
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1810
|
+
start
|
|
1811
|
+
end
|
|
1812
|
+
text
|
|
1813
|
+
part
|
|
1814
|
+
tag
|
|
1815
|
+
color
|
|
1804
1816
|
}
|
|
1805
1817
|
choices {
|
|
1806
1818
|
id
|
|
@@ -1893,6 +1905,7 @@ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
|
|
|
1893
1905
|
createdAt
|
|
1894
1906
|
updatedAt
|
|
1895
1907
|
name
|
|
1908
|
+
index
|
|
1896
1909
|
caption
|
|
1897
1910
|
path
|
|
1898
1911
|
path512
|
|
@@ -108,6 +108,7 @@ exports.QUESTION = (0, client_1.gql) `
|
|
|
108
108
|
createdAt
|
|
109
109
|
updatedAt
|
|
110
110
|
name
|
|
111
|
+
index
|
|
111
112
|
caption
|
|
112
113
|
path
|
|
113
114
|
path512
|
|
@@ -228,6 +229,7 @@ exports.QUESTION = (0, client_1.gql) `
|
|
|
228
229
|
createdAt
|
|
229
230
|
updatedAt
|
|
230
231
|
name
|
|
232
|
+
index
|
|
231
233
|
caption
|
|
232
234
|
path
|
|
233
235
|
path512
|
|
@@ -351,6 +353,7 @@ exports.QUESTION = (0, client_1.gql) `
|
|
|
351
353
|
createdAt
|
|
352
354
|
updatedAt
|
|
353
355
|
name
|
|
356
|
+
index
|
|
354
357
|
caption
|
|
355
358
|
path
|
|
356
359
|
path512
|
|
@@ -471,6 +474,7 @@ exports.QUESTION = (0, client_1.gql) `
|
|
|
471
474
|
createdAt
|
|
472
475
|
updatedAt
|
|
473
476
|
name
|
|
477
|
+
index
|
|
474
478
|
caption
|
|
475
479
|
path
|
|
476
480
|
path512
|
|
@@ -19,6 +19,7 @@ export interface ICardPicture {
|
|
|
19
19
|
pictureId: Id;
|
|
20
20
|
cardId: Id;
|
|
21
21
|
picture: IPicture;
|
|
22
|
+
pictureIdx: number;
|
|
22
23
|
}
|
|
23
24
|
export interface IChapterPicture {
|
|
24
25
|
id: Id;
|
|
@@ -32,24 +33,28 @@ export interface IOsceActorPicture {
|
|
|
32
33
|
pictureId: Id;
|
|
33
34
|
osceStationId: Id;
|
|
34
35
|
picture: IPicture;
|
|
36
|
+
pictureIdx: number;
|
|
35
37
|
}
|
|
36
38
|
export interface IOsceCandidatePicture {
|
|
37
39
|
id: Id;
|
|
38
40
|
pictureId: Id;
|
|
39
41
|
osceStationId: Id;
|
|
40
42
|
picture: IPicture;
|
|
43
|
+
pictureIdx: number;
|
|
41
44
|
}
|
|
42
45
|
export interface IOsceExaminerPicture {
|
|
43
46
|
id: Id;
|
|
44
47
|
pictureId: Id;
|
|
45
48
|
osceStationId: Id;
|
|
46
49
|
picture: IPicture;
|
|
50
|
+
pictureIdx: number;
|
|
47
51
|
}
|
|
48
52
|
export interface IOsceWalkthroughPicture {
|
|
49
53
|
id: Id;
|
|
50
54
|
pictureId: Id;
|
|
51
55
|
osceStationId: Id;
|
|
52
56
|
picture: IPicture;
|
|
57
|
+
pictureIdx: number;
|
|
53
58
|
}
|
|
54
59
|
export interface IQuestionPicture {
|
|
55
60
|
id: Id;
|
|
@@ -57,4 +62,5 @@ export interface IQuestionPicture {
|
|
|
57
62
|
questionId: Id;
|
|
58
63
|
choiceId: Id | null;
|
|
59
64
|
picture: IPicture;
|
|
65
|
+
pictureIdx: number;
|
|
60
66
|
}
|
|
@@ -164,6 +164,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
164
164
|
createdAt
|
|
165
165
|
updatedAt
|
|
166
166
|
name
|
|
167
|
+
index
|
|
167
168
|
caption
|
|
168
169
|
path
|
|
169
170
|
path512
|
|
@@ -292,6 +293,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
292
293
|
createdAt
|
|
293
294
|
updatedAt
|
|
294
295
|
name
|
|
296
|
+
index
|
|
295
297
|
caption
|
|
296
298
|
path
|
|
297
299
|
path512
|
|
@@ -423,6 +425,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
423
425
|
createdAt
|
|
424
426
|
updatedAt
|
|
425
427
|
name
|
|
428
|
+
index
|
|
426
429
|
caption
|
|
427
430
|
path
|
|
428
431
|
path512
|
|
@@ -552,6 +555,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
552
555
|
updatedAt
|
|
553
556
|
name
|
|
554
557
|
caption
|
|
558
|
+
index
|
|
555
559
|
path
|
|
556
560
|
path512
|
|
557
561
|
path256
|
|
@@ -776,6 +780,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
776
780
|
name
|
|
777
781
|
caption
|
|
778
782
|
path
|
|
783
|
+
index
|
|
779
784
|
path512
|
|
780
785
|
path256
|
|
781
786
|
topicId
|
|
@@ -903,6 +908,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
903
908
|
updatedAt
|
|
904
909
|
name
|
|
905
910
|
caption
|
|
911
|
+
index
|
|
906
912
|
path
|
|
907
913
|
path512
|
|
908
914
|
path256
|
|
@@ -1033,6 +1039,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1033
1039
|
createdAt
|
|
1034
1040
|
updatedAt
|
|
1035
1041
|
name
|
|
1042
|
+
index
|
|
1036
1043
|
caption
|
|
1037
1044
|
path
|
|
1038
1045
|
path512
|
|
@@ -1161,6 +1168,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1161
1168
|
createdAt
|
|
1162
1169
|
updatedAt
|
|
1163
1170
|
name
|
|
1171
|
+
index
|
|
1164
1172
|
caption
|
|
1165
1173
|
path
|
|
1166
1174
|
path512
|
|
@@ -1389,6 +1397,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
1389
1397
|
createdAt
|
|
1390
1398
|
updatedAt
|
|
1391
1399
|
name
|
|
1400
|
+
index
|
|
1392
1401
|
caption
|
|
1393
1402
|
path
|
|
1394
1403
|
path512
|
|
@@ -1517,6 +1526,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
1517
1526
|
createdAt
|
|
1518
1527
|
updatedAt
|
|
1519
1528
|
name
|
|
1529
|
+
index
|
|
1520
1530
|
caption
|
|
1521
1531
|
path
|
|
1522
1532
|
path512
|
|
@@ -1648,6 +1658,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
1648
1658
|
createdAt
|
|
1649
1659
|
updatedAt
|
|
1650
1660
|
name
|
|
1661
|
+
index
|
|
1651
1662
|
caption
|
|
1652
1663
|
path
|
|
1653
1664
|
path512
|
|
@@ -1776,6 +1787,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
1776
1787
|
createdAt
|
|
1777
1788
|
updatedAt
|
|
1778
1789
|
name
|
|
1790
|
+
index
|
|
1779
1791
|
caption
|
|
1780
1792
|
path
|
|
1781
1793
|
path512
|
|
@@ -72,12 +72,12 @@ export const MARKSHEET = gql `
|
|
|
72
72
|
totalVotes
|
|
73
73
|
typeId
|
|
74
74
|
highlights {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
75
|
+
start
|
|
76
|
+
end
|
|
77
|
+
text
|
|
78
|
+
part
|
|
79
|
+
tag
|
|
80
|
+
color
|
|
81
81
|
}
|
|
82
82
|
choices {
|
|
83
83
|
id
|
|
@@ -170,6 +170,7 @@ export const MARKSHEET = gql `
|
|
|
170
170
|
createdAt
|
|
171
171
|
updatedAt
|
|
172
172
|
name
|
|
173
|
+
index
|
|
173
174
|
caption
|
|
174
175
|
path
|
|
175
176
|
path512
|
|
@@ -200,12 +201,12 @@ export const MARKSHEET = gql `
|
|
|
200
201
|
totalVotes
|
|
201
202
|
typeId
|
|
202
203
|
highlights {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
204
|
+
start
|
|
205
|
+
end
|
|
206
|
+
text
|
|
207
|
+
part
|
|
208
|
+
tag
|
|
209
|
+
color
|
|
209
210
|
}
|
|
210
211
|
choices {
|
|
211
212
|
id
|
|
@@ -298,6 +299,7 @@ export const MARKSHEET = gql `
|
|
|
298
299
|
createdAt
|
|
299
300
|
updatedAt
|
|
300
301
|
name
|
|
302
|
+
index
|
|
301
303
|
caption
|
|
302
304
|
path
|
|
303
305
|
path512
|
|
@@ -331,12 +333,12 @@ export const MARKSHEET = gql `
|
|
|
331
333
|
totalVotes
|
|
332
334
|
typeId
|
|
333
335
|
highlights {
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
336
|
+
start
|
|
337
|
+
end
|
|
338
|
+
text
|
|
339
|
+
part
|
|
340
|
+
tag
|
|
341
|
+
color
|
|
340
342
|
}
|
|
341
343
|
choices {
|
|
342
344
|
id
|
|
@@ -429,6 +431,7 @@ export const MARKSHEET = gql `
|
|
|
429
431
|
createdAt
|
|
430
432
|
updatedAt
|
|
431
433
|
name
|
|
434
|
+
index
|
|
432
435
|
caption
|
|
433
436
|
path
|
|
434
437
|
path512
|
|
@@ -459,12 +462,12 @@ export const MARKSHEET = gql `
|
|
|
459
462
|
totalVotes
|
|
460
463
|
typeId
|
|
461
464
|
highlights {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
465
|
+
start
|
|
466
|
+
end
|
|
467
|
+
text
|
|
468
|
+
part
|
|
469
|
+
tag
|
|
470
|
+
color
|
|
468
471
|
}
|
|
469
472
|
choices {
|
|
470
473
|
id
|
|
@@ -557,6 +560,7 @@ export const MARKSHEET = gql `
|
|
|
557
560
|
createdAt
|
|
558
561
|
updatedAt
|
|
559
562
|
name
|
|
563
|
+
index
|
|
560
564
|
caption
|
|
561
565
|
path
|
|
562
566
|
path512
|
|
@@ -667,13 +671,13 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
667
671
|
totalVotes
|
|
668
672
|
typeId
|
|
669
673
|
highlights {
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
674
|
+
start
|
|
675
|
+
end
|
|
676
|
+
text
|
|
677
|
+
part
|
|
678
|
+
tag
|
|
679
|
+
color
|
|
680
|
+
}
|
|
677
681
|
choices {
|
|
678
682
|
id
|
|
679
683
|
explanation
|
|
@@ -769,6 +773,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
769
773
|
createdAt
|
|
770
774
|
updatedAt
|
|
771
775
|
name
|
|
776
|
+
index
|
|
772
777
|
caption
|
|
773
778
|
path
|
|
774
779
|
path512
|
|
@@ -808,7 +813,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
808
813
|
part
|
|
809
814
|
tag
|
|
810
815
|
color
|
|
811
|
-
|
|
816
|
+
}
|
|
812
817
|
choices {
|
|
813
818
|
id
|
|
814
819
|
explanation
|
|
@@ -900,6 +905,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
900
905
|
createdAt
|
|
901
906
|
updatedAt
|
|
902
907
|
name
|
|
908
|
+
index
|
|
903
909
|
caption
|
|
904
910
|
path
|
|
905
911
|
path512
|
|
@@ -1028,6 +1034,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
1028
1034
|
createdAt
|
|
1029
1035
|
updatedAt
|
|
1030
1036
|
name
|
|
1037
|
+
index
|
|
1031
1038
|
caption
|
|
1032
1039
|
path
|
|
1033
1040
|
path512
|
|
@@ -1067,7 +1074,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
1067
1074
|
part
|
|
1068
1075
|
tag
|
|
1069
1076
|
color
|
|
1070
|
-
|
|
1077
|
+
}
|
|
1071
1078
|
choices {
|
|
1072
1079
|
id
|
|
1073
1080
|
explanation
|
|
@@ -1159,6 +1166,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
1159
1166
|
createdAt
|
|
1160
1167
|
updatedAt
|
|
1161
1168
|
name
|
|
1169
|
+
index
|
|
1162
1170
|
caption
|
|
1163
1171
|
path
|
|
1164
1172
|
path512
|
|
@@ -1195,7 +1203,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
1195
1203
|
part
|
|
1196
1204
|
tag
|
|
1197
1205
|
color
|
|
1198
|
-
|
|
1206
|
+
}
|
|
1199
1207
|
choices {
|
|
1200
1208
|
id
|
|
1201
1209
|
explanation
|
|
@@ -1287,6 +1295,7 @@ export const FLAGGED_QUESTIONS = gql `
|
|
|
1287
1295
|
createdAt
|
|
1288
1296
|
updatedAt
|
|
1289
1297
|
name
|
|
1298
|
+
index
|
|
1290
1299
|
caption
|
|
1291
1300
|
path
|
|
1292
1301
|
path512
|
|
@@ -1405,12 +1414,12 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1405
1414
|
totalVotes
|
|
1406
1415
|
typeId
|
|
1407
1416
|
highlights {
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1417
|
+
start
|
|
1418
|
+
end
|
|
1419
|
+
text
|
|
1420
|
+
part
|
|
1421
|
+
tag
|
|
1422
|
+
color
|
|
1414
1423
|
}
|
|
1415
1424
|
choices {
|
|
1416
1425
|
id
|
|
@@ -1503,6 +1512,7 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1503
1512
|
createdAt
|
|
1504
1513
|
updatedAt
|
|
1505
1514
|
name
|
|
1515
|
+
index
|
|
1506
1516
|
caption
|
|
1507
1517
|
path
|
|
1508
1518
|
path512
|
|
@@ -1533,12 +1543,12 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1533
1543
|
totalVotes
|
|
1534
1544
|
typeId
|
|
1535
1545
|
highlights {
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1546
|
+
start
|
|
1547
|
+
end
|
|
1548
|
+
text
|
|
1549
|
+
part
|
|
1550
|
+
tag
|
|
1551
|
+
color
|
|
1542
1552
|
}
|
|
1543
1553
|
choices {
|
|
1544
1554
|
id
|
|
@@ -1631,6 +1641,7 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1631
1641
|
createdAt
|
|
1632
1642
|
updatedAt
|
|
1633
1643
|
name
|
|
1644
|
+
index
|
|
1634
1645
|
caption
|
|
1635
1646
|
path
|
|
1636
1647
|
path512
|
|
@@ -1664,12 +1675,12 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1664
1675
|
totalVotes
|
|
1665
1676
|
typeId
|
|
1666
1677
|
highlights {
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1678
|
+
start
|
|
1679
|
+
end
|
|
1680
|
+
text
|
|
1681
|
+
part
|
|
1682
|
+
tag
|
|
1683
|
+
color
|
|
1673
1684
|
}
|
|
1674
1685
|
choices {
|
|
1675
1686
|
id
|
|
@@ -1762,6 +1773,7 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1762
1773
|
createdAt
|
|
1763
1774
|
updatedAt
|
|
1764
1775
|
name
|
|
1776
|
+
index
|
|
1765
1777
|
caption
|
|
1766
1778
|
path
|
|
1767
1779
|
path512
|
|
@@ -1792,12 +1804,12 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1792
1804
|
totalVotes
|
|
1793
1805
|
typeId
|
|
1794
1806
|
highlights {
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1807
|
+
start
|
|
1808
|
+
end
|
|
1809
|
+
text
|
|
1810
|
+
part
|
|
1811
|
+
tag
|
|
1812
|
+
color
|
|
1801
1813
|
}
|
|
1802
1814
|
choices {
|
|
1803
1815
|
id
|
|
@@ -1890,6 +1902,7 @@ export const FLAGGED_QUESTIONS_MARKSHEET = gql `
|
|
|
1890
1902
|
createdAt
|
|
1891
1903
|
updatedAt
|
|
1892
1904
|
name
|
|
1905
|
+
index
|
|
1893
1906
|
caption
|
|
1894
1907
|
path
|
|
1895
1908
|
path512
|
|
@@ -105,6 +105,7 @@ export const QUESTION = gql `
|
|
|
105
105
|
createdAt
|
|
106
106
|
updatedAt
|
|
107
107
|
name
|
|
108
|
+
index
|
|
108
109
|
caption
|
|
109
110
|
path
|
|
110
111
|
path512
|
|
@@ -225,6 +226,7 @@ export const QUESTION = gql `
|
|
|
225
226
|
createdAt
|
|
226
227
|
updatedAt
|
|
227
228
|
name
|
|
229
|
+
index
|
|
228
230
|
caption
|
|
229
231
|
path
|
|
230
232
|
path512
|
|
@@ -348,6 +350,7 @@ export const QUESTION = gql `
|
|
|
348
350
|
createdAt
|
|
349
351
|
updatedAt
|
|
350
352
|
name
|
|
353
|
+
index
|
|
351
354
|
caption
|
|
352
355
|
path
|
|
353
356
|
path512
|
|
@@ -468,6 +471,7 @@ export const QUESTION = gql `
|
|
|
468
471
|
createdAt
|
|
469
472
|
updatedAt
|
|
470
473
|
name
|
|
474
|
+
index
|
|
471
475
|
caption
|
|
472
476
|
path
|
|
473
477
|
path512
|