@quesmed/types-rn 2.2.40 → 2.2.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.2.40",
3
+ "version": "2.2.43",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -10,6 +10,14 @@ export interface IPreBuildMarksheet {
10
10
  seenIncorrect: number;
11
11
  buildRef: number;
12
12
  }
13
+ /**
14
+ * buildQuestionMarksheet
15
+ */
16
+ export interface IBuildQuestionMarksheetVar {
17
+ questionIds?: number[];
18
+ }
19
+ export declare type IBuildQuestionMarksheetData = RestrictedData<graphqlNormalize & IMarksheet, 'buildQuestionMarksheet'>;
20
+ export declare const BUILD_QUESTION_MARKSHEET: import("@apollo/client").DocumentNode;
13
21
  /**
14
22
  * buildMarksheet
15
23
  */
@@ -92,6 +100,7 @@ export interface IMarkDataInfo {
92
100
  questionChoiceId?: Id;
93
101
  updatedAt?: Date;
94
102
  questionId?: Id;
103
+ prevQuestionId?: Id;
95
104
  timeTaken?: number;
96
105
  mark?: IMarksheetMarkJSONB;
97
106
  isAnswered?: boolean;
@@ -1,8 +1,569 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.END_MARKSHEET = exports.LEAVE_MARKSHEET = exports.MODIFY_MARKSHEET_INFO = exports.optimisticModifyMarksheetBuilderConfig = exports.START_OR_JOIN_MARKSHEET = exports.REMOVE_FLAGGED_QUESTION = exports.ADD_FLAGGED_QUESTION = exports.optimisticSaveMarksheets = exports.updateMarksheets = exports.SAVE_MARKSHEET = exports.RE_BUILD_MARKSHEET = exports.BUILD_MARKSHEET = void 0;
3
+ exports.END_MARKSHEET = exports.LEAVE_MARKSHEET = exports.MODIFY_MARKSHEET_INFO = exports.optimisticModifyMarksheetBuilderConfig = exports.START_OR_JOIN_MARKSHEET = exports.REMOVE_FLAGGED_QUESTION = exports.ADD_FLAGGED_QUESTION = exports.optimisticSaveMarksheets = exports.updateMarksheets = exports.SAVE_MARKSHEET = exports.RE_BUILD_MARKSHEET = exports.BUILD_MARKSHEET = exports.BUILD_QUESTION_MARKSHEET = void 0;
4
4
  const client_1 = require("@apollo/client");
5
5
  const restricted_1 = require("../../query/restricted");
6
+ exports.BUILD_QUESTION_MARKSHEET = (0, client_1.gql) `
7
+ mutation BuildQuestionMarksheet($questionIds: [Int!]) {
8
+ restricted {
9
+ buildQuestionMarksheet(questionIds: $questionIds) {
10
+ id
11
+ createdAt
12
+ startedAt
13
+ endedAt
14
+ agoraId
15
+ topicIds
16
+ completed
17
+ topicIds
18
+ topicNames
19
+ mockTestId
20
+ totalQuestions
21
+ solo
22
+ state
23
+ currentMarkId
24
+ topicConceptData
25
+ builderConfig {
26
+ difficulty
27
+ isTest
28
+ numberOfQuestions
29
+ secondsPerQuestion
30
+ unseen
31
+ seenCorrect
32
+ seenIncorrect
33
+ }
34
+ preBuildData {
35
+ buildRef
36
+ seenCorrect
37
+ seenIncorrect
38
+ unseen
39
+ }
40
+ topicNames
41
+ source
42
+ user {
43
+ displayName
44
+ id
45
+ }
46
+ users {
47
+ id
48
+ displayName
49
+ }
50
+ marks {
51
+ id
52
+ flagged
53
+ index
54
+ questionChoiceId
55
+ marksheetId
56
+ timeTaken
57
+ isAnswered
58
+ mark
59
+ question {
60
+ ... on QuestionSBA {
61
+ conceptId
62
+ difficulty
63
+ dislikes
64
+ explanation
65
+ id
66
+ isLikedByMe
67
+ likes
68
+ question
69
+ totalVotes
70
+ typeId
71
+ choices {
72
+ id
73
+ explanation
74
+ name
75
+ label
76
+ answer
77
+ votes
78
+ picture {
79
+ id
80
+ createdAt
81
+ updatedAt
82
+ name
83
+ caption
84
+ path
85
+ path512
86
+ path256
87
+ }
88
+ }
89
+ comments {
90
+ id
91
+ createdAt
92
+ comment
93
+ likes
94
+ user {
95
+ id
96
+ displayName
97
+ }
98
+ dislikes
99
+ isLikedByMe
100
+ questionId
101
+ replies {
102
+ id
103
+ createdAt
104
+ comment
105
+ user {
106
+ id
107
+ displayName
108
+ }
109
+ likes
110
+ dislikes
111
+ isLikedByMe
112
+ questionId
113
+ }
114
+ }
115
+ concept {
116
+ id
117
+ name
118
+ chapter {
119
+ id
120
+ explanation
121
+ pictures {
122
+ id
123
+ createdAt
124
+ updatedAt
125
+ name
126
+ caption
127
+ path
128
+ path512
129
+ path256
130
+ topicId
131
+ topic {
132
+ id
133
+ name
134
+ typeId
135
+ }
136
+ }
137
+ }
138
+ videos {
139
+ id
140
+ title
141
+ museId
142
+ startTime
143
+ endTime
144
+ thumbnail
145
+ concepts {
146
+ id
147
+ name
148
+ }
149
+ live
150
+ description
151
+ duration
152
+ }
153
+ }
154
+ pictures {
155
+ id
156
+ createdAt
157
+ updatedAt
158
+ name
159
+ caption
160
+ path
161
+ path512
162
+ path256
163
+ topicId
164
+ topic {
165
+ id
166
+ name
167
+ typeId
168
+ }
169
+ }
170
+ difficulty
171
+ psaSectionId
172
+ likes
173
+ dislikes
174
+ isLikedByMe
175
+ sbaAnswer: answer
176
+ }
177
+ ... on QuestionQA {
178
+ conceptId
179
+ difficulty
180
+ dislikes
181
+ explanation
182
+ id
183
+ isLikedByMe
184
+ likes
185
+ question
186
+ totalVotes
187
+ typeId
188
+ choices {
189
+ id
190
+ explanation
191
+ name
192
+ label
193
+ answer
194
+ votes
195
+ picture {
196
+ id
197
+ createdAt
198
+ updatedAt
199
+ name
200
+ caption
201
+ path
202
+ path512
203
+ path256
204
+ }
205
+ }
206
+ comments {
207
+ id
208
+ createdAt
209
+ comment
210
+ likes
211
+ user {
212
+ id
213
+ displayName
214
+ }
215
+ dislikes
216
+ isLikedByMe
217
+ questionId
218
+ replies {
219
+ id
220
+ createdAt
221
+ comment
222
+ user {
223
+ id
224
+ displayName
225
+ }
226
+ likes
227
+ dislikes
228
+ isLikedByMe
229
+ questionId
230
+ }
231
+ }
232
+ concept {
233
+ id
234
+ name
235
+ chapter {
236
+ id
237
+ explanation
238
+ pictures {
239
+ id
240
+ createdAt
241
+ updatedAt
242
+ name
243
+ caption
244
+ path
245
+ path512
246
+ path256
247
+ topicId
248
+ topic {
249
+ id
250
+ name
251
+ typeId
252
+ }
253
+ }
254
+ }
255
+ videos {
256
+ id
257
+ title
258
+ museId
259
+ startTime
260
+ endTime
261
+ thumbnail
262
+ concepts {
263
+ id
264
+ name
265
+ }
266
+ live
267
+ description
268
+ duration
269
+ }
270
+ }
271
+ pictures {
272
+ id
273
+ createdAt
274
+ updatedAt
275
+ name
276
+ caption
277
+ path
278
+ path512
279
+ path256
280
+ topicId
281
+ topic {
282
+ id
283
+ name
284
+ typeId
285
+ }
286
+ }
287
+ difficulty
288
+ psaSectionId
289
+ likes
290
+ dislikes
291
+ isLikedByMe
292
+ qaAnswer: answer {
293
+ dose
294
+ units
295
+ }
296
+ }
297
+ ... on QuestionMultiA {
298
+ conceptId
299
+ difficulty
300
+ dislikes
301
+ explanation
302
+ id
303
+ isLikedByMe
304
+ likes
305
+ question
306
+ totalVotes
307
+ typeId
308
+ choices {
309
+ id
310
+ explanation
311
+ name
312
+ label
313
+ answer
314
+ votes
315
+ picture {
316
+ id
317
+ createdAt
318
+ updatedAt
319
+ name
320
+ caption
321
+ path
322
+ path512
323
+ path256
324
+ }
325
+ }
326
+ comments {
327
+ id
328
+ createdAt
329
+ comment
330
+ likes
331
+ user {
332
+ id
333
+ displayName
334
+ }
335
+ dislikes
336
+ isLikedByMe
337
+ questionId
338
+ replies {
339
+ id
340
+ createdAt
341
+ comment
342
+ user {
343
+ id
344
+ displayName
345
+ }
346
+ likes
347
+ dislikes
348
+ isLikedByMe
349
+ questionId
350
+ }
351
+ }
352
+ concept {
353
+ id
354
+ name
355
+ chapter {
356
+ id
357
+ explanation
358
+ pictures {
359
+ id
360
+ createdAt
361
+ updatedAt
362
+ name
363
+ caption
364
+ path
365
+ path512
366
+ path256
367
+ topicId
368
+ topic {
369
+ id
370
+ name
371
+ typeId
372
+ }
373
+ }
374
+ }
375
+ videos {
376
+ id
377
+ title
378
+ museId
379
+ startTime
380
+ endTime
381
+ thumbnail
382
+ concepts {
383
+ id
384
+ name
385
+ }
386
+ live
387
+ description
388
+ duration
389
+ }
390
+ }
391
+ pictures {
392
+ id
393
+ createdAt
394
+ updatedAt
395
+ name
396
+ caption
397
+ path
398
+ path512
399
+ path256
400
+ topicId
401
+ topic {
402
+ id
403
+ name
404
+ typeId
405
+ }
406
+ }
407
+ difficulty
408
+ psaSectionId
409
+ likes
410
+ dislikes
411
+ isLikedByMe
412
+ multiAnswer: answer
413
+ }
414
+ ... on QuestionPrescription {
415
+ conceptId
416
+ difficulty
417
+ dislikes
418
+ explanation
419
+ id
420
+ isLikedByMe
421
+ likes
422
+ question
423
+ totalVotes
424
+ typeId
425
+ choices {
426
+ id
427
+ explanation
428
+ name
429
+ label
430
+ answer
431
+ votes
432
+ picture {
433
+ id
434
+ createdAt
435
+ updatedAt
436
+ name
437
+ caption
438
+ path
439
+ path512
440
+ path256
441
+ }
442
+ }
443
+ comments {
444
+ id
445
+ createdAt
446
+ comment
447
+ likes
448
+ user {
449
+ id
450
+ displayName
451
+ }
452
+ dislikes
453
+ isLikedByMe
454
+ questionId
455
+ replies {
456
+ id
457
+ createdAt
458
+ comment
459
+ user {
460
+ id
461
+ displayName
462
+ }
463
+ likes
464
+ dislikes
465
+ isLikedByMe
466
+ questionId
467
+ }
468
+ }
469
+ concept {
470
+ id
471
+ name
472
+ chapter {
473
+ id
474
+ explanation
475
+ pictures {
476
+ id
477
+ createdAt
478
+ updatedAt
479
+ name
480
+ caption
481
+ path
482
+ path512
483
+ path256
484
+ topicId
485
+ topic {
486
+ id
487
+ name
488
+ typeId
489
+ }
490
+ }
491
+ }
492
+ videos {
493
+ id
494
+ title
495
+ museId
496
+ startTime
497
+ endTime
498
+ thumbnail
499
+ concepts {
500
+ id
501
+ name
502
+ }
503
+ live
504
+ description
505
+ duration
506
+ }
507
+ }
508
+ pictures {
509
+ id
510
+ createdAt
511
+ updatedAt
512
+ name
513
+ caption
514
+ path
515
+ path512
516
+ path256
517
+ topicId
518
+ topic {
519
+ id
520
+ name
521
+ typeId
522
+ }
523
+ }
524
+ difficulty
525
+ psaSectionId
526
+ likes
527
+ dislikes
528
+ isLikedByMe
529
+ prescribeAnswer: answer {
530
+ dose {
531
+ value
532
+ display
533
+ }
534
+ drug {
535
+ value
536
+ display
537
+ }
538
+ route {
539
+ value
540
+ display
541
+ }
542
+ frequency {
543
+ display
544
+ value
545
+ }
546
+ duration {
547
+ display
548
+ value
549
+ }
550
+ units {
551
+ display
552
+ value
553
+ }
554
+ }
555
+ }
556
+ }
557
+ }
558
+ mockTestId
559
+ correct
560
+ incorrect
561
+ totalQuestions
562
+ isTestMarksheet
563
+ }
564
+ }
565
+ }
566
+ `;
6
567
  exports.BUILD_MARKSHEET = (0, client_1.gql) `
7
568
  mutation BuildMarksheet($buildMarksheet: BuildMarksheetInput!) {
8
569
  restricted {
@@ -37,6 +37,12 @@ export declare const LATEST_PAST_AGORA_ID: import("@apollo/client").DocumentNode
37
37
  export declare type IFlaggedQuestionsVar = null;
38
38
  export declare type IFlaggedQuestionsData = RestrictedData<(graphqlNormalize & IUserFlaggedQuestion)[], 'flaggedQuestions'>;
39
39
  export declare const FLAGGED_QUESTIONS: import("@apollo/client").DocumentNode;
40
+ /**
41
+ * flaggedQuestionMarksheet
42
+ */
43
+ export declare type IFlaggedQuestionsMarksheetVar = null;
44
+ export declare type IFlaggedQuestionsMarksheetData = RestrictedData<graphqlNormalize & IMarksheet, 'flaggedQuestionsMarksheet'>;
45
+ export declare const FLAGGED_QUESTIONS_MARKSHEET: import("@apollo/client").DocumentNode;
40
46
  export interface IMarksheetFeedbackVar {
41
47
  id: Id;
42
48
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PRE_BUILD_MARKSHEET = exports.HEARTBEAT_QBANK = exports.MARKSHEET_FEEDBACK = exports.FLAGGED_QUESTIONS = exports.LATEST_PAST_AGORA_ID = exports.LATEST_PAST_MARKSHEET_ID = exports.MARKSHEETS = exports.MARKSHEET = void 0;
3
+ exports.PRE_BUILD_MARKSHEET = exports.HEARTBEAT_QBANK = exports.MARKSHEET_FEEDBACK = exports.FLAGGED_QUESTIONS_MARKSHEET = exports.FLAGGED_QUESTIONS = exports.LATEST_PAST_AGORA_ID = exports.LATEST_PAST_MARKSHEET_ID = exports.MARKSHEETS = exports.MARKSHEET = void 0;
4
4
  const client_1 = require("@apollo/client");
5
5
  exports.MARKSHEET = (0, client_1.gql) `
6
6
  query Marksheet($id: Int!) {
@@ -1223,6 +1223,563 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
1223
1223
  }
1224
1224
  }
1225
1225
  `;
1226
+ exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
1227
+ query FlaggedQuestionsMarksheet {
1228
+ restricted {
1229
+ flaggedQuestionsMarksheet {
1230
+ id
1231
+ topicConceptData
1232
+ currentMarkId
1233
+ completed
1234
+ topicIds
1235
+ topicNames
1236
+ mockTestId
1237
+ totalQuestions
1238
+ solo
1239
+ agoraId
1240
+ state
1241
+ user {
1242
+ id
1243
+ displayName
1244
+ }
1245
+ users {
1246
+ id
1247
+ displayName
1248
+ }
1249
+ builderConfig {
1250
+ difficulty
1251
+ isTest
1252
+ numberOfQuestions
1253
+ secondsPerQuestion
1254
+ unseen
1255
+ seenCorrect
1256
+ seenIncorrect
1257
+ }
1258
+ preBuildData {
1259
+ buildRef
1260
+ seenCorrect
1261
+ seenIncorrect
1262
+ unseen
1263
+ }
1264
+ createdAt
1265
+ startedAt
1266
+ endedAt
1267
+ isTestMarksheet
1268
+ source
1269
+ correct
1270
+ incorrect
1271
+ marks {
1272
+ id
1273
+ flagged
1274
+ index
1275
+ questionChoiceId
1276
+ marksheetId
1277
+ timeTaken
1278
+ isAnswered
1279
+ mark
1280
+ question {
1281
+ ... on QuestionSBA {
1282
+ conceptId
1283
+ difficulty
1284
+ dislikes
1285
+ explanation
1286
+ id
1287
+ isLikedByMe
1288
+ likes
1289
+ question
1290
+ totalVotes
1291
+ typeId
1292
+ choices {
1293
+ id
1294
+ explanation
1295
+ name
1296
+ label
1297
+ answer
1298
+ votes
1299
+ picture {
1300
+ id
1301
+ createdAt
1302
+ updatedAt
1303
+ name
1304
+ caption
1305
+ path
1306
+ path512
1307
+ path256
1308
+ }
1309
+ }
1310
+ comments {
1311
+ id
1312
+ createdAt
1313
+ comment
1314
+ likes
1315
+ user {
1316
+ id
1317
+ displayName
1318
+ }
1319
+ dislikes
1320
+ isLikedByMe
1321
+ questionId
1322
+ replies {
1323
+ id
1324
+ createdAt
1325
+ comment
1326
+ user {
1327
+ id
1328
+ displayName
1329
+ }
1330
+ likes
1331
+ dislikes
1332
+ isLikedByMe
1333
+ questionId
1334
+ }
1335
+ }
1336
+ concept {
1337
+ id
1338
+ name
1339
+ chapter {
1340
+ id
1341
+ explanation
1342
+ pictures {
1343
+ id
1344
+ createdAt
1345
+ updatedAt
1346
+ name
1347
+ caption
1348
+ path
1349
+ path512
1350
+ path256
1351
+ topicId
1352
+ topic {
1353
+ id
1354
+ name
1355
+ typeId
1356
+ }
1357
+ }
1358
+ }
1359
+ videos {
1360
+ id
1361
+ title
1362
+ museId
1363
+ startTime
1364
+ endTime
1365
+ thumbnail
1366
+ concepts {
1367
+ id
1368
+ name
1369
+ }
1370
+ live
1371
+ description
1372
+ duration
1373
+ }
1374
+ }
1375
+ pictures {
1376
+ id
1377
+ createdAt
1378
+ updatedAt
1379
+ name
1380
+ caption
1381
+ path
1382
+ path512
1383
+ path256
1384
+ topicId
1385
+ topic {
1386
+ id
1387
+ name
1388
+ typeId
1389
+ }
1390
+ }
1391
+ difficulty
1392
+ psaSectionId
1393
+ likes
1394
+ dislikes
1395
+ isLikedByMe
1396
+ sbaAnswer: answer
1397
+ }
1398
+ ... on QuestionQA {
1399
+ conceptId
1400
+ difficulty
1401
+ dislikes
1402
+ explanation
1403
+ id
1404
+ isLikedByMe
1405
+ likes
1406
+ question
1407
+ totalVotes
1408
+ typeId
1409
+ choices {
1410
+ id
1411
+ explanation
1412
+ name
1413
+ label
1414
+ answer
1415
+ votes
1416
+ picture {
1417
+ id
1418
+ createdAt
1419
+ updatedAt
1420
+ name
1421
+ caption
1422
+ path
1423
+ path512
1424
+ path256
1425
+ }
1426
+ }
1427
+ comments {
1428
+ id
1429
+ createdAt
1430
+ comment
1431
+ likes
1432
+ user {
1433
+ id
1434
+ displayName
1435
+ }
1436
+ dislikes
1437
+ isLikedByMe
1438
+ questionId
1439
+ replies {
1440
+ id
1441
+ createdAt
1442
+ comment
1443
+ user {
1444
+ id
1445
+ displayName
1446
+ }
1447
+ likes
1448
+ dislikes
1449
+ isLikedByMe
1450
+ questionId
1451
+ }
1452
+ }
1453
+ concept {
1454
+ id
1455
+ name
1456
+ chapter {
1457
+ id
1458
+ explanation
1459
+ pictures {
1460
+ id
1461
+ createdAt
1462
+ updatedAt
1463
+ name
1464
+ caption
1465
+ path
1466
+ path512
1467
+ path256
1468
+ topicId
1469
+ topic {
1470
+ id
1471
+ name
1472
+ typeId
1473
+ }
1474
+ }
1475
+ }
1476
+ videos {
1477
+ id
1478
+ title
1479
+ museId
1480
+ startTime
1481
+ endTime
1482
+ thumbnail
1483
+ concepts {
1484
+ id
1485
+ name
1486
+ }
1487
+ live
1488
+ description
1489
+ duration
1490
+ }
1491
+ }
1492
+ pictures {
1493
+ id
1494
+ createdAt
1495
+ updatedAt
1496
+ name
1497
+ caption
1498
+ path
1499
+ path512
1500
+ path256
1501
+ topicId
1502
+ topic {
1503
+ id
1504
+ name
1505
+ typeId
1506
+ }
1507
+ }
1508
+ difficulty
1509
+ psaSectionId
1510
+ likes
1511
+ dislikes
1512
+ isLikedByMe
1513
+ qaAnswer: answer {
1514
+ dose
1515
+ units
1516
+ }
1517
+ }
1518
+ ... on QuestionMultiA {
1519
+ conceptId
1520
+ difficulty
1521
+ dislikes
1522
+ explanation
1523
+ id
1524
+ isLikedByMe
1525
+ likes
1526
+ question
1527
+ totalVotes
1528
+ typeId
1529
+ choices {
1530
+ id
1531
+ explanation
1532
+ name
1533
+ label
1534
+ answer
1535
+ votes
1536
+ picture {
1537
+ id
1538
+ createdAt
1539
+ updatedAt
1540
+ name
1541
+ caption
1542
+ path
1543
+ path512
1544
+ path256
1545
+ }
1546
+ }
1547
+ comments {
1548
+ id
1549
+ createdAt
1550
+ comment
1551
+ likes
1552
+ user {
1553
+ id
1554
+ displayName
1555
+ }
1556
+ dislikes
1557
+ isLikedByMe
1558
+ questionId
1559
+ replies {
1560
+ id
1561
+ createdAt
1562
+ comment
1563
+ user {
1564
+ id
1565
+ displayName
1566
+ }
1567
+ likes
1568
+ dislikes
1569
+ isLikedByMe
1570
+ questionId
1571
+ }
1572
+ }
1573
+ concept {
1574
+ id
1575
+ name
1576
+ chapter {
1577
+ id
1578
+ explanation
1579
+ pictures {
1580
+ id
1581
+ createdAt
1582
+ updatedAt
1583
+ name
1584
+ caption
1585
+ path
1586
+ path512
1587
+ path256
1588
+ topicId
1589
+ topic {
1590
+ id
1591
+ name
1592
+ typeId
1593
+ }
1594
+ }
1595
+ }
1596
+ videos {
1597
+ id
1598
+ title
1599
+ museId
1600
+ startTime
1601
+ endTime
1602
+ thumbnail
1603
+ concepts {
1604
+ id
1605
+ name
1606
+ }
1607
+ live
1608
+ description
1609
+ duration
1610
+ }
1611
+ }
1612
+ pictures {
1613
+ id
1614
+ createdAt
1615
+ updatedAt
1616
+ name
1617
+ caption
1618
+ path
1619
+ path512
1620
+ path256
1621
+ topicId
1622
+ topic {
1623
+ id
1624
+ name
1625
+ typeId
1626
+ }
1627
+ }
1628
+ difficulty
1629
+ psaSectionId
1630
+ likes
1631
+ dislikes
1632
+ isLikedByMe
1633
+ multiAnswer: answer
1634
+ }
1635
+ ... on QuestionPrescription {
1636
+ conceptId
1637
+ difficulty
1638
+ dislikes
1639
+ explanation
1640
+ id
1641
+ isLikedByMe
1642
+ likes
1643
+ question
1644
+ totalVotes
1645
+ typeId
1646
+ choices {
1647
+ id
1648
+ explanation
1649
+ name
1650
+ label
1651
+ answer
1652
+ votes
1653
+ picture {
1654
+ id
1655
+ createdAt
1656
+ updatedAt
1657
+ name
1658
+ caption
1659
+ path
1660
+ path512
1661
+ path256
1662
+ }
1663
+ }
1664
+ comments {
1665
+ id
1666
+ createdAt
1667
+ comment
1668
+ likes
1669
+ user {
1670
+ id
1671
+ displayName
1672
+ }
1673
+ dislikes
1674
+ isLikedByMe
1675
+ questionId
1676
+ replies {
1677
+ id
1678
+ createdAt
1679
+ comment
1680
+ user {
1681
+ id
1682
+ displayName
1683
+ }
1684
+ likes
1685
+ dislikes
1686
+ isLikedByMe
1687
+ questionId
1688
+ }
1689
+ }
1690
+ concept {
1691
+ id
1692
+ name
1693
+ chapter {
1694
+ id
1695
+ explanation
1696
+ pictures {
1697
+ id
1698
+ createdAt
1699
+ updatedAt
1700
+ name
1701
+ caption
1702
+ path
1703
+ path512
1704
+ path256
1705
+ topicId
1706
+ topic {
1707
+ id
1708
+ name
1709
+ typeId
1710
+ }
1711
+ }
1712
+ }
1713
+ videos {
1714
+ id
1715
+ title
1716
+ museId
1717
+ startTime
1718
+ endTime
1719
+ thumbnail
1720
+ concepts {
1721
+ id
1722
+ name
1723
+ }
1724
+ live
1725
+ description
1726
+ duration
1727
+ }
1728
+ }
1729
+ pictures {
1730
+ id
1731
+ createdAt
1732
+ updatedAt
1733
+ name
1734
+ caption
1735
+ path
1736
+ path512
1737
+ path256
1738
+ topicId
1739
+ topic {
1740
+ id
1741
+ name
1742
+ typeId
1743
+ }
1744
+ }
1745
+ difficulty
1746
+ psaSectionId
1747
+ likes
1748
+ dislikes
1749
+ isLikedByMe
1750
+ prescribeAnswer: answer {
1751
+ dose {
1752
+ value
1753
+ display
1754
+ }
1755
+ drug {
1756
+ value
1757
+ display
1758
+ }
1759
+ route {
1760
+ value
1761
+ display
1762
+ }
1763
+ frequency {
1764
+ display
1765
+ value
1766
+ }
1767
+ duration {
1768
+ display
1769
+ value
1770
+ }
1771
+ units {
1772
+ display
1773
+ value
1774
+ }
1775
+ }
1776
+ }
1777
+ }
1778
+ }
1779
+ }
1780
+ }
1781
+ }
1782
+ `;
1226
1783
  exports.MARKSHEET_FEEDBACK = (0, client_1.gql) `
1227
1784
  query MarksheetFeedback($id: Int!) {
1228
1785
  restricted {