@quesmed/types 2.5.114 → 2.6.0
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 +1 -0
- package/dist/cjs/resolvers/fragments/blog.js +1 -0
- package/dist/cjs/resolvers/fragments/chapter.js +1 -0
- package/dist/cjs/resolvers/fragments/marksheet.js +3 -0
- package/dist/cjs/resolvers/fragments/picture.js +1 -0
- package/dist/cjs/resolvers/fragments/user.js +1 -0
- package/dist/cjs/resolvers/mutation/restricted/marksheet.js +63 -0
- package/dist/cjs/resolvers/mutation/restricted/todo.d.ts +2 -2
- package/dist/cjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/cjs/resolvers/query/restricted/marksheet.d.ts +1 -1
- package/dist/cjs/resolvers/query/restricted/marksheet.js +66 -0
- package/dist/cjs/resolvers/query/restricted/quesBook.js +2 -0
- package/dist/cjs/resolvers/query/restricted/question.js +21 -0
- package/dist/cjs/resolvers/query/restricted/replication.js +4 -1
- package/dist/cjs/resolvers/query/restricted/todos.js +2 -0
- package/dist/cjs/resolvers/query/restricted/video.js +5 -0
- package/dist/cjs/resolvers/query/sample.d.ts +1 -1
- package/dist/cjs/resolvers/query/sample.js +3 -0
- package/dist/cjs/resolvers/query/video.js +6 -0
- package/dist/mjs/models/Picture.d.ts +1 -0
- package/dist/mjs/resolvers/fragments/blog.js +1 -0
- package/dist/mjs/resolvers/fragments/chapter.js +1 -0
- package/dist/mjs/resolvers/fragments/marksheet.js +3 -0
- package/dist/mjs/resolvers/fragments/picture.js +1 -0
- package/dist/mjs/resolvers/fragments/user.js +1 -0
- package/dist/mjs/resolvers/mutation/restricted/marksheet.js +63 -0
- package/dist/mjs/resolvers/mutation/restricted/todo.d.ts +2 -2
- package/dist/mjs/resolvers/mutation/restricted/todo.js +1 -0
- package/dist/mjs/resolvers/query/restricted/marksheet.d.ts +1 -1
- package/dist/mjs/resolvers/query/restricted/marksheet.js +66 -0
- package/dist/mjs/resolvers/query/restricted/quesBook.js +2 -0
- package/dist/mjs/resolvers/query/restricted/question.js +21 -0
- package/dist/mjs/resolvers/query/restricted/replication.js +4 -1
- package/dist/mjs/resolvers/query/restricted/todos.js +2 -0
- package/dist/mjs/resolvers/query/restricted/video.js +5 -0
- package/dist/mjs/resolvers/query/sample.d.ts +1 -1
- package/dist/mjs/resolvers/query/sample.js +3 -0
- package/dist/mjs/resolvers/query/video.js +6 -0
- package/package.json +1 -1
|
@@ -32,6 +32,7 @@ exports.VIDEO = (0, client_1.gql) `
|
|
|
32
32
|
path
|
|
33
33
|
path512
|
|
34
34
|
path256
|
|
35
|
+
thumbhash
|
|
35
36
|
index
|
|
36
37
|
topicId
|
|
37
38
|
}
|
|
@@ -71,6 +72,7 @@ exports.VIDEO = (0, client_1.gql) `
|
|
|
71
72
|
path
|
|
72
73
|
path512
|
|
73
74
|
path256
|
|
75
|
+
thumbhash
|
|
74
76
|
topicId
|
|
75
77
|
topic {
|
|
76
78
|
id
|
|
@@ -87,6 +89,7 @@ exports.VIDEO = (0, client_1.gql) `
|
|
|
87
89
|
path
|
|
88
90
|
path512
|
|
89
91
|
path256
|
|
92
|
+
thumbhash
|
|
90
93
|
topicId
|
|
91
94
|
topic {
|
|
92
95
|
id
|
|
@@ -103,6 +106,7 @@ exports.VIDEO = (0, client_1.gql) `
|
|
|
103
106
|
path
|
|
104
107
|
path512
|
|
105
108
|
path256
|
|
109
|
+
thumbhash
|
|
106
110
|
topicId
|
|
107
111
|
topic {
|
|
108
112
|
id
|
|
@@ -119,6 +123,7 @@ exports.VIDEO = (0, client_1.gql) `
|
|
|
119
123
|
path
|
|
120
124
|
path512
|
|
121
125
|
path256
|
|
126
|
+
thumbhash
|
|
122
127
|
topicId
|
|
123
128
|
topic {
|
|
124
129
|
id
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IMarksheet, IOsceMarksheet, ITodo } from '../../models';
|
|
2
|
-
import {
|
|
2
|
+
import { RootData, graphqlNormalize } from '../types';
|
|
3
3
|
export declare const SAMPLE_CONTENT: import("@apollo/client").DocumentNode;
|
|
4
4
|
export type ISampleContentVar = null;
|
|
5
5
|
interface ISampleContent {
|
|
@@ -59,6 +59,7 @@ exports.SAMPLE_MARKSHEET = (0, client_1.gql) `
|
|
|
59
59
|
path
|
|
60
60
|
path512
|
|
61
61
|
path256
|
|
62
|
+
thumbhash
|
|
62
63
|
index
|
|
63
64
|
topicId
|
|
64
65
|
topic {
|
|
@@ -87,6 +88,7 @@ exports.SAMPLE_MARKSHEET = (0, client_1.gql) `
|
|
|
87
88
|
path
|
|
88
89
|
path512
|
|
89
90
|
path256
|
|
91
|
+
thumbhash
|
|
90
92
|
}
|
|
91
93
|
}
|
|
92
94
|
}
|
|
@@ -123,6 +125,7 @@ exports.SAMPLE_TODO = (0, client_1.gql) `
|
|
|
123
125
|
path
|
|
124
126
|
path512
|
|
125
127
|
path256
|
|
128
|
+
thumbhash
|
|
126
129
|
index
|
|
127
130
|
topicId
|
|
128
131
|
topic {
|
|
@@ -47,6 +47,7 @@ exports.SAMPLE_VIDEOS = (0, client_1.gql) `
|
|
|
47
47
|
path
|
|
48
48
|
path512
|
|
49
49
|
path256
|
|
50
|
+
thumbhash
|
|
50
51
|
index
|
|
51
52
|
topicId
|
|
52
53
|
topic {
|
|
@@ -84,6 +85,7 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
|
|
|
84
85
|
path
|
|
85
86
|
path512
|
|
86
87
|
path256
|
|
88
|
+
thumbhash
|
|
87
89
|
index
|
|
88
90
|
topicId
|
|
89
91
|
topic {
|
|
@@ -121,6 +123,7 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
|
|
|
121
123
|
path
|
|
122
124
|
path512
|
|
123
125
|
path256
|
|
126
|
+
thumbhash
|
|
124
127
|
topicId
|
|
125
128
|
topic {
|
|
126
129
|
id
|
|
@@ -137,6 +140,7 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
|
|
|
137
140
|
path
|
|
138
141
|
path512
|
|
139
142
|
path256
|
|
143
|
+
thumbhash
|
|
140
144
|
topicId
|
|
141
145
|
topic {
|
|
142
146
|
id
|
|
@@ -153,6 +157,7 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
|
|
|
153
157
|
path
|
|
154
158
|
path512
|
|
155
159
|
path256
|
|
160
|
+
thumbhash
|
|
156
161
|
topicId
|
|
157
162
|
topic {
|
|
158
163
|
id
|
|
@@ -169,6 +174,7 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
|
|
|
169
174
|
path
|
|
170
175
|
path512
|
|
171
176
|
path256
|
|
177
|
+
thumbhash
|
|
172
178
|
topicId
|
|
173
179
|
topic {
|
|
174
180
|
id
|
|
@@ -38,6 +38,7 @@ export const MARKSHEET_MARK_FIELDS = gql `
|
|
|
38
38
|
path
|
|
39
39
|
path512
|
|
40
40
|
path256
|
|
41
|
+
thumbhash
|
|
41
42
|
}
|
|
42
43
|
}
|
|
43
44
|
comments {
|
|
@@ -84,6 +85,7 @@ export const MARKSHEET_MARK_FIELDS = gql `
|
|
|
84
85
|
path
|
|
85
86
|
path512
|
|
86
87
|
path256
|
|
88
|
+
thumbhash
|
|
87
89
|
index
|
|
88
90
|
topicId
|
|
89
91
|
topic {
|
|
@@ -120,6 +122,7 @@ export const MARKSHEET_MARK_FIELDS = gql `
|
|
|
120
122
|
path
|
|
121
123
|
path512
|
|
122
124
|
path256
|
|
125
|
+
thumbhash
|
|
123
126
|
topicId
|
|
124
127
|
topic {
|
|
125
128
|
id
|
|
@@ -92,6 +92,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
92
92
|
path
|
|
93
93
|
path512
|
|
94
94
|
path256
|
|
95
|
+
thumbhash
|
|
95
96
|
}
|
|
96
97
|
}
|
|
97
98
|
comments {
|
|
@@ -144,6 +145,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
144
145
|
path
|
|
145
146
|
path512
|
|
146
147
|
path256
|
|
148
|
+
thumbhash
|
|
147
149
|
index
|
|
148
150
|
topicId
|
|
149
151
|
}
|
|
@@ -175,6 +177,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
175
177
|
path
|
|
176
178
|
path512
|
|
177
179
|
path256
|
|
180
|
+
thumbhash
|
|
178
181
|
topicId
|
|
179
182
|
}
|
|
180
183
|
difficulty
|
|
@@ -219,6 +222,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
219
222
|
path
|
|
220
223
|
path512
|
|
221
224
|
path256
|
|
225
|
+
thumbhash
|
|
222
226
|
}
|
|
223
227
|
}
|
|
224
228
|
comments {
|
|
@@ -271,6 +275,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
271
275
|
path
|
|
272
276
|
path512
|
|
273
277
|
path256
|
|
278
|
+
thumbhash
|
|
274
279
|
index
|
|
275
280
|
topicId
|
|
276
281
|
}
|
|
@@ -302,6 +307,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
302
307
|
path
|
|
303
308
|
path512
|
|
304
309
|
path256
|
|
310
|
+
thumbhash
|
|
305
311
|
topicId
|
|
306
312
|
}
|
|
307
313
|
difficulty
|
|
@@ -349,6 +355,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
349
355
|
path
|
|
350
356
|
path512
|
|
351
357
|
path256
|
|
358
|
+
thumbhash
|
|
352
359
|
}
|
|
353
360
|
}
|
|
354
361
|
comments {
|
|
@@ -401,6 +408,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
401
408
|
path
|
|
402
409
|
path512
|
|
403
410
|
path256
|
|
411
|
+
thumbhash
|
|
404
412
|
index
|
|
405
413
|
topicId
|
|
406
414
|
}
|
|
@@ -432,6 +440,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
432
440
|
path
|
|
433
441
|
path512
|
|
434
442
|
path256
|
|
443
|
+
thumbhash
|
|
435
444
|
topicId
|
|
436
445
|
}
|
|
437
446
|
difficulty
|
|
@@ -476,6 +485,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
476
485
|
path
|
|
477
486
|
path512
|
|
478
487
|
path256
|
|
488
|
+
thumbhash
|
|
479
489
|
}
|
|
480
490
|
}
|
|
481
491
|
comments {
|
|
@@ -528,6 +538,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
528
538
|
path
|
|
529
539
|
path512
|
|
530
540
|
path256
|
|
541
|
+
thumbhash
|
|
531
542
|
index
|
|
532
543
|
topicId
|
|
533
544
|
}
|
|
@@ -559,6 +570,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
559
570
|
path
|
|
560
571
|
path512
|
|
561
572
|
path256
|
|
573
|
+
thumbhash
|
|
562
574
|
topicId
|
|
563
575
|
}
|
|
564
576
|
difficulty
|
|
@@ -635,6 +647,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
635
647
|
path
|
|
636
648
|
path512
|
|
637
649
|
path256
|
|
650
|
+
thumbhash
|
|
638
651
|
}
|
|
639
652
|
}
|
|
640
653
|
comments {
|
|
@@ -687,6 +700,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
687
700
|
path
|
|
688
701
|
path512
|
|
689
702
|
path256
|
|
703
|
+
thumbhash
|
|
690
704
|
index
|
|
691
705
|
topicId
|
|
692
706
|
}
|
|
@@ -718,6 +732,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
718
732
|
path
|
|
719
733
|
path512
|
|
720
734
|
path256
|
|
735
|
+
thumbhash
|
|
721
736
|
topicId
|
|
722
737
|
}
|
|
723
738
|
difficulty
|
|
@@ -762,6 +777,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
762
777
|
path
|
|
763
778
|
path512
|
|
764
779
|
path256
|
|
780
|
+
thumbhash
|
|
765
781
|
}
|
|
766
782
|
}
|
|
767
783
|
comments {
|
|
@@ -814,6 +830,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
814
830
|
path
|
|
815
831
|
path512
|
|
816
832
|
path256
|
|
833
|
+
thumbhash
|
|
817
834
|
index
|
|
818
835
|
topicId
|
|
819
836
|
}
|
|
@@ -845,6 +862,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
845
862
|
path
|
|
846
863
|
path512
|
|
847
864
|
path256
|
|
865
|
+
thumbhash
|
|
848
866
|
topicId
|
|
849
867
|
}
|
|
850
868
|
difficulty
|
|
@@ -889,6 +907,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
889
907
|
path
|
|
890
908
|
path512
|
|
891
909
|
path256
|
|
910
|
+
thumbhash
|
|
892
911
|
}
|
|
893
912
|
}
|
|
894
913
|
comments {
|
|
@@ -941,6 +960,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
941
960
|
path
|
|
942
961
|
path512
|
|
943
962
|
path256
|
|
963
|
+
thumbhash
|
|
944
964
|
index
|
|
945
965
|
topicId
|
|
946
966
|
}
|
|
@@ -972,6 +992,7 @@ export const BUILD_QUESTION_MARKSHEET = gql `
|
|
|
972
992
|
path
|
|
973
993
|
path512
|
|
974
994
|
path256
|
|
995
|
+
thumbhash
|
|
975
996
|
topicId
|
|
976
997
|
}
|
|
977
998
|
difficulty
|
|
@@ -1089,6 +1110,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1089
1110
|
path
|
|
1090
1111
|
path512
|
|
1091
1112
|
path256
|
|
1113
|
+
thumbhash
|
|
1092
1114
|
}
|
|
1093
1115
|
}
|
|
1094
1116
|
comments {
|
|
@@ -1141,6 +1163,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1141
1163
|
path
|
|
1142
1164
|
path512
|
|
1143
1165
|
path256
|
|
1166
|
+
thumbhash
|
|
1144
1167
|
index
|
|
1145
1168
|
topicId
|
|
1146
1169
|
}
|
|
@@ -1172,6 +1195,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1172
1195
|
index
|
|
1173
1196
|
path512
|
|
1174
1197
|
path256
|
|
1198
|
+
thumbhash
|
|
1175
1199
|
topicId
|
|
1176
1200
|
}
|
|
1177
1201
|
difficulty
|
|
@@ -1216,6 +1240,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1216
1240
|
path
|
|
1217
1241
|
path512
|
|
1218
1242
|
path256
|
|
1243
|
+
thumbhash
|
|
1219
1244
|
}
|
|
1220
1245
|
}
|
|
1221
1246
|
comments {
|
|
@@ -1268,6 +1293,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1268
1293
|
path
|
|
1269
1294
|
path512
|
|
1270
1295
|
path256
|
|
1296
|
+
thumbhash
|
|
1271
1297
|
index
|
|
1272
1298
|
topicId
|
|
1273
1299
|
}
|
|
@@ -1299,6 +1325,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1299
1325
|
path
|
|
1300
1326
|
path512
|
|
1301
1327
|
path256
|
|
1328
|
+
thumbhash
|
|
1302
1329
|
topicId
|
|
1303
1330
|
}
|
|
1304
1331
|
difficulty
|
|
@@ -1346,6 +1373,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1346
1373
|
path
|
|
1347
1374
|
path512
|
|
1348
1375
|
path256
|
|
1376
|
+
thumbhash
|
|
1349
1377
|
}
|
|
1350
1378
|
}
|
|
1351
1379
|
comments {
|
|
@@ -1398,6 +1426,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1398
1426
|
path
|
|
1399
1427
|
path512
|
|
1400
1428
|
path256
|
|
1429
|
+
thumbhash
|
|
1401
1430
|
index
|
|
1402
1431
|
topicId
|
|
1403
1432
|
}
|
|
@@ -1429,6 +1458,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1429
1458
|
path
|
|
1430
1459
|
path512
|
|
1431
1460
|
path256
|
|
1461
|
+
thumbhash
|
|
1432
1462
|
topicId
|
|
1433
1463
|
}
|
|
1434
1464
|
difficulty
|
|
@@ -1473,6 +1503,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1473
1503
|
path
|
|
1474
1504
|
path512
|
|
1475
1505
|
path256
|
|
1506
|
+
thumbhash
|
|
1476
1507
|
}
|
|
1477
1508
|
}
|
|
1478
1509
|
comments {
|
|
@@ -1525,6 +1556,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1525
1556
|
path
|
|
1526
1557
|
path512
|
|
1527
1558
|
path256
|
|
1559
|
+
thumbhash
|
|
1528
1560
|
index
|
|
1529
1561
|
topicId
|
|
1530
1562
|
}
|
|
@@ -1556,6 +1588,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1556
1588
|
path
|
|
1557
1589
|
path512
|
|
1558
1590
|
path256
|
|
1591
|
+
thumbhash
|
|
1559
1592
|
topicId
|
|
1560
1593
|
}
|
|
1561
1594
|
difficulty
|
|
@@ -1632,6 +1665,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1632
1665
|
path
|
|
1633
1666
|
path512
|
|
1634
1667
|
path256
|
|
1668
|
+
thumbhash
|
|
1635
1669
|
}
|
|
1636
1670
|
}
|
|
1637
1671
|
comments {
|
|
@@ -1684,6 +1718,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1684
1718
|
path
|
|
1685
1719
|
path512
|
|
1686
1720
|
path256
|
|
1721
|
+
thumbhash
|
|
1687
1722
|
index
|
|
1688
1723
|
topicId
|
|
1689
1724
|
}
|
|
@@ -1715,6 +1750,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1715
1750
|
path
|
|
1716
1751
|
path512
|
|
1717
1752
|
path256
|
|
1753
|
+
thumbhash
|
|
1718
1754
|
topicId
|
|
1719
1755
|
}
|
|
1720
1756
|
difficulty
|
|
@@ -1759,6 +1795,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1759
1795
|
path
|
|
1760
1796
|
path512
|
|
1761
1797
|
path256
|
|
1798
|
+
thumbhash
|
|
1762
1799
|
}
|
|
1763
1800
|
}
|
|
1764
1801
|
comments {
|
|
@@ -1811,6 +1848,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1811
1848
|
path
|
|
1812
1849
|
path512
|
|
1813
1850
|
path256
|
|
1851
|
+
thumbhash
|
|
1814
1852
|
index
|
|
1815
1853
|
topicId
|
|
1816
1854
|
}
|
|
@@ -1842,6 +1880,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1842
1880
|
path
|
|
1843
1881
|
path512
|
|
1844
1882
|
path256
|
|
1883
|
+
thumbhash
|
|
1845
1884
|
topicId
|
|
1846
1885
|
}
|
|
1847
1886
|
difficulty
|
|
@@ -1886,6 +1925,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1886
1925
|
path
|
|
1887
1926
|
path512
|
|
1888
1927
|
path256
|
|
1928
|
+
thumbhash
|
|
1889
1929
|
}
|
|
1890
1930
|
}
|
|
1891
1931
|
comments {
|
|
@@ -1938,6 +1978,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1938
1978
|
path
|
|
1939
1979
|
path512
|
|
1940
1980
|
path256
|
|
1981
|
+
thumbhash
|
|
1941
1982
|
index
|
|
1942
1983
|
topicId
|
|
1943
1984
|
}
|
|
@@ -1969,6 +2010,7 @@ export const BUILD_MARKSHEET = gql `
|
|
|
1969
2010
|
path
|
|
1970
2011
|
path512
|
|
1971
2012
|
path256
|
|
2013
|
+
thumbhash
|
|
1972
2014
|
topicId
|
|
1973
2015
|
}
|
|
1974
2016
|
difficulty
|
|
@@ -2091,6 +2133,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2091
2133
|
path
|
|
2092
2134
|
path512
|
|
2093
2135
|
path256
|
|
2136
|
+
thumbhash
|
|
2094
2137
|
}
|
|
2095
2138
|
}
|
|
2096
2139
|
comments {
|
|
@@ -2143,6 +2186,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2143
2186
|
path
|
|
2144
2187
|
path512
|
|
2145
2188
|
path256
|
|
2189
|
+
thumbhash
|
|
2146
2190
|
index
|
|
2147
2191
|
topicId
|
|
2148
2192
|
}
|
|
@@ -2174,6 +2218,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2174
2218
|
path
|
|
2175
2219
|
path512
|
|
2176
2220
|
path256
|
|
2221
|
+
thumbhash
|
|
2177
2222
|
topicId
|
|
2178
2223
|
}
|
|
2179
2224
|
difficulty
|
|
@@ -2218,6 +2263,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2218
2263
|
path
|
|
2219
2264
|
path512
|
|
2220
2265
|
path256
|
|
2266
|
+
thumbhash
|
|
2221
2267
|
}
|
|
2222
2268
|
}
|
|
2223
2269
|
comments {
|
|
@@ -2270,6 +2316,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2270
2316
|
path
|
|
2271
2317
|
path512
|
|
2272
2318
|
path256
|
|
2319
|
+
thumbhash
|
|
2273
2320
|
index
|
|
2274
2321
|
topicId
|
|
2275
2322
|
}
|
|
@@ -2301,6 +2348,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2301
2348
|
path
|
|
2302
2349
|
path512
|
|
2303
2350
|
path256
|
|
2351
|
+
thumbhash
|
|
2304
2352
|
topicId
|
|
2305
2353
|
}
|
|
2306
2354
|
difficulty
|
|
@@ -2348,6 +2396,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2348
2396
|
path
|
|
2349
2397
|
path512
|
|
2350
2398
|
path256
|
|
2399
|
+
thumbhash
|
|
2351
2400
|
}
|
|
2352
2401
|
}
|
|
2353
2402
|
comments {
|
|
@@ -2400,6 +2449,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2400
2449
|
path
|
|
2401
2450
|
path512
|
|
2402
2451
|
path256
|
|
2452
|
+
thumbhash
|
|
2403
2453
|
index
|
|
2404
2454
|
topicId
|
|
2405
2455
|
}
|
|
@@ -2431,6 +2481,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2431
2481
|
path
|
|
2432
2482
|
path512
|
|
2433
2483
|
path256
|
|
2484
|
+
thumbhash
|
|
2434
2485
|
topicId
|
|
2435
2486
|
}
|
|
2436
2487
|
difficulty
|
|
@@ -2475,6 +2526,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2475
2526
|
path
|
|
2476
2527
|
path512
|
|
2477
2528
|
path256
|
|
2529
|
+
thumbhash
|
|
2478
2530
|
}
|
|
2479
2531
|
}
|
|
2480
2532
|
comments {
|
|
@@ -2527,6 +2579,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2527
2579
|
path
|
|
2528
2580
|
path512
|
|
2529
2581
|
path256
|
|
2582
|
+
thumbhash
|
|
2530
2583
|
index
|
|
2531
2584
|
topicId
|
|
2532
2585
|
}
|
|
@@ -2558,6 +2611,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2558
2611
|
path
|
|
2559
2612
|
path512
|
|
2560
2613
|
path256
|
|
2614
|
+
thumbhash
|
|
2561
2615
|
topicId
|
|
2562
2616
|
}
|
|
2563
2617
|
difficulty
|
|
@@ -2634,6 +2688,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2634
2688
|
path
|
|
2635
2689
|
path512
|
|
2636
2690
|
path256
|
|
2691
|
+
thumbhash
|
|
2637
2692
|
}
|
|
2638
2693
|
}
|
|
2639
2694
|
comments {
|
|
@@ -2686,6 +2741,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2686
2741
|
path
|
|
2687
2742
|
path512
|
|
2688
2743
|
path256
|
|
2744
|
+
thumbhash
|
|
2689
2745
|
index
|
|
2690
2746
|
topicId
|
|
2691
2747
|
}
|
|
@@ -2717,6 +2773,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2717
2773
|
path
|
|
2718
2774
|
path512
|
|
2719
2775
|
path256
|
|
2776
|
+
thumbhash
|
|
2720
2777
|
topicId
|
|
2721
2778
|
}
|
|
2722
2779
|
difficulty
|
|
@@ -2761,6 +2818,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2761
2818
|
path
|
|
2762
2819
|
path512
|
|
2763
2820
|
path256
|
|
2821
|
+
thumbhash
|
|
2764
2822
|
}
|
|
2765
2823
|
}
|
|
2766
2824
|
comments {
|
|
@@ -2813,6 +2871,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2813
2871
|
path
|
|
2814
2872
|
path512
|
|
2815
2873
|
path256
|
|
2874
|
+
thumbhash
|
|
2816
2875
|
index
|
|
2817
2876
|
topicId
|
|
2818
2877
|
}
|
|
@@ -2844,6 +2903,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2844
2903
|
path
|
|
2845
2904
|
path512
|
|
2846
2905
|
path256
|
|
2906
|
+
thumbhash
|
|
2847
2907
|
topicId
|
|
2848
2908
|
}
|
|
2849
2909
|
difficulty
|
|
@@ -2888,6 +2948,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2888
2948
|
path
|
|
2889
2949
|
path512
|
|
2890
2950
|
path256
|
|
2951
|
+
thumbhash
|
|
2891
2952
|
}
|
|
2892
2953
|
}
|
|
2893
2954
|
comments {
|
|
@@ -2940,6 +3001,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2940
3001
|
path
|
|
2941
3002
|
path512
|
|
2942
3003
|
path256
|
|
3004
|
+
thumbhash
|
|
2943
3005
|
index
|
|
2944
3006
|
topicId
|
|
2945
3007
|
}
|
|
@@ -2971,6 +3033,7 @@ export const RE_BUILD_MARKSHEET = gql `
|
|
|
2971
3033
|
path
|
|
2972
3034
|
path512
|
|
2973
3035
|
path256
|
|
3036
|
+
thumbhash
|
|
2974
3037
|
topicId
|
|
2975
3038
|
}
|
|
2976
3039
|
difficulty
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApolloCache } from '@apollo/client';
|
|
2
|
-
import {
|
|
2
|
+
import { ITodo, Id } from '../../../models';
|
|
3
3
|
import { ApolloUpdateOptions, ApolloUpdateResultRestricted } from '../../apollo';
|
|
4
|
-
import {
|
|
4
|
+
import { RestrictedData, graphqlNormalize } from '../../types';
|
|
5
5
|
import { IUserCompletedCard } from './../../../models/User';
|
|
6
6
|
export declare const BUILD_TODO: import("@apollo/client").DocumentNode;
|
|
7
7
|
export interface IBuildTodoInput {
|