@quesmed/types 2.2.18 → 2.2.21

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.
@@ -1,8 +1,6 @@
1
1
  import { gql } from '@apollo/client';
2
- import { MARKSHEET_MARK_FIELDS } from '../../fragments/marksheet';
3
2
  import { MARKSHEET, } from '../../query/restricted';
4
3
  export const BUILD_MARKSHEET = gql `
5
- ${MARKSHEET_MARK_FIELDS}
6
4
  mutation BuildMarksheet($buildMarksheet: BuildMarksheetInput!) {
7
5
  restricted {
8
6
  buildMarksheet(buildMarksheet: $buildMarksheet) {
@@ -40,7 +38,512 @@ export const BUILD_MARKSHEET = gql `
40
38
  displayName
41
39
  }
42
40
  marks {
43
- ...MarksheetMarkFields
41
+ id
42
+ flagged
43
+ index
44
+ questionChoiceId
45
+ marksheetId
46
+ timeTaken
47
+ isAnswered
48
+ mark
49
+ question {
50
+ ... on QuestionSBA {
51
+ conceptId
52
+ difficulty
53
+ dislikes
54
+ explanation
55
+ id
56
+ isLikedByMe
57
+ likes
58
+ question
59
+ totalVotes
60
+ typeId
61
+ choices {
62
+ id
63
+ explanation
64
+ name
65
+ label
66
+ answer
67
+ votes
68
+ picture {
69
+ id
70
+ createdAt
71
+ updatedAt
72
+ name
73
+ caption
74
+ path
75
+ path512
76
+ path256
77
+ }
78
+ }
79
+ comments {
80
+ id
81
+ createdAt
82
+ comment
83
+ likes
84
+ user {
85
+ id
86
+ displayName
87
+ }
88
+ dislikes
89
+ isLikedByMe
90
+ questionId
91
+ replies {
92
+ id
93
+ createdAt
94
+ comment
95
+ user {
96
+ id
97
+ displayName
98
+ }
99
+ likes
100
+ dislikes
101
+ isLikedByMe
102
+ questionId
103
+ }
104
+ }
105
+ concept {
106
+ id
107
+ name
108
+ chapter {
109
+ id
110
+ explanation
111
+ pictures {
112
+ id
113
+ createdAt
114
+ updatedAt
115
+ name
116
+ caption
117
+ path
118
+ path512
119
+ path256
120
+ topicId
121
+ topic {
122
+ id
123
+ name
124
+ typeId
125
+ }
126
+ }
127
+ }
128
+ videos {
129
+ id
130
+ title
131
+ museId
132
+ startTime
133
+ endTime
134
+ thumbnail
135
+ concepts {
136
+ id
137
+ name
138
+ }
139
+ live
140
+ description
141
+ duration
142
+ }
143
+ }
144
+ pictures {
145
+ id
146
+ createdAt
147
+ updatedAt
148
+ name
149
+ caption
150
+ path
151
+ path512
152
+ path256
153
+ topicId
154
+ topic {
155
+ id
156
+ name
157
+ typeId
158
+ }
159
+ }
160
+ difficulty
161
+ psaSectionId
162
+ likes
163
+ dislikes
164
+ isLikedByMe
165
+ sbaAnswer: answer
166
+ }
167
+ ... on QuestionQA {
168
+ conceptId
169
+ difficulty
170
+ dislikes
171
+ explanation
172
+ id
173
+ isLikedByMe
174
+ likes
175
+ question
176
+ totalVotes
177
+ typeId
178
+ choices {
179
+ id
180
+ explanation
181
+ name
182
+ label
183
+ answer
184
+ votes
185
+ picture {
186
+ id
187
+ createdAt
188
+ updatedAt
189
+ name
190
+ caption
191
+ path
192
+ path512
193
+ path256
194
+ }
195
+ }
196
+ comments {
197
+ id
198
+ createdAt
199
+ comment
200
+ likes
201
+ user {
202
+ id
203
+ displayName
204
+ }
205
+ dislikes
206
+ isLikedByMe
207
+ questionId
208
+ replies {
209
+ id
210
+ createdAt
211
+ comment
212
+ user {
213
+ id
214
+ displayName
215
+ }
216
+ likes
217
+ dislikes
218
+ isLikedByMe
219
+ questionId
220
+ }
221
+ }
222
+ concept {
223
+ id
224
+ name
225
+ chapter {
226
+ id
227
+ explanation
228
+ pictures {
229
+ id
230
+ createdAt
231
+ updatedAt
232
+ name
233
+ caption
234
+ path
235
+ path512
236
+ path256
237
+ topicId
238
+ topic {
239
+ id
240
+ name
241
+ typeId
242
+ }
243
+ }
244
+ }
245
+ videos {
246
+ id
247
+ title
248
+ museId
249
+ startTime
250
+ endTime
251
+ thumbnail
252
+ concepts {
253
+ id
254
+ name
255
+ }
256
+ live
257
+ description
258
+ duration
259
+ }
260
+ }
261
+ pictures {
262
+ id
263
+ createdAt
264
+ updatedAt
265
+ name
266
+ caption
267
+ path
268
+ path512
269
+ path256
270
+ topicId
271
+ topic {
272
+ id
273
+ name
274
+ typeId
275
+ }
276
+ }
277
+ difficulty
278
+ psaSectionId
279
+ likes
280
+ dislikes
281
+ isLikedByMe
282
+ qaAnswer: answer {
283
+ dose
284
+ units
285
+ }
286
+ }
287
+ ... on QuestionMultiA {
288
+ conceptId
289
+ difficulty
290
+ dislikes
291
+ explanation
292
+ id
293
+ isLikedByMe
294
+ likes
295
+ question
296
+ totalVotes
297
+ typeId
298
+ choices {
299
+ id
300
+ explanation
301
+ name
302
+ label
303
+ answer
304
+ votes
305
+ picture {
306
+ id
307
+ createdAt
308
+ updatedAt
309
+ name
310
+ caption
311
+ path
312
+ path512
313
+ path256
314
+ }
315
+ }
316
+ comments {
317
+ id
318
+ createdAt
319
+ comment
320
+ likes
321
+ user {
322
+ id
323
+ displayName
324
+ }
325
+ dislikes
326
+ isLikedByMe
327
+ questionId
328
+ replies {
329
+ id
330
+ createdAt
331
+ comment
332
+ user {
333
+ id
334
+ displayName
335
+ }
336
+ likes
337
+ dislikes
338
+ isLikedByMe
339
+ questionId
340
+ }
341
+ }
342
+ concept {
343
+ id
344
+ name
345
+ chapter {
346
+ id
347
+ explanation
348
+ pictures {
349
+ id
350
+ createdAt
351
+ updatedAt
352
+ name
353
+ caption
354
+ path
355
+ path512
356
+ path256
357
+ topicId
358
+ topic {
359
+ id
360
+ name
361
+ typeId
362
+ }
363
+ }
364
+ }
365
+ videos {
366
+ id
367
+ title
368
+ museId
369
+ startTime
370
+ endTime
371
+ thumbnail
372
+ concepts {
373
+ id
374
+ name
375
+ }
376
+ live
377
+ description
378
+ duration
379
+ }
380
+ }
381
+ pictures {
382
+ id
383
+ createdAt
384
+ updatedAt
385
+ name
386
+ caption
387
+ path
388
+ path512
389
+ path256
390
+ topicId
391
+ topic {
392
+ id
393
+ name
394
+ typeId
395
+ }
396
+ }
397
+ difficulty
398
+ psaSectionId
399
+ likes
400
+ dislikes
401
+ isLikedByMe
402
+ multiAnswer: answer
403
+ }
404
+ ... on QuestionPrescription {
405
+ conceptId
406
+ difficulty
407
+ dislikes
408
+ explanation
409
+ id
410
+ isLikedByMe
411
+ likes
412
+ question
413
+ totalVotes
414
+ typeId
415
+ choices {
416
+ id
417
+ explanation
418
+ name
419
+ label
420
+ answer
421
+ votes
422
+ picture {
423
+ id
424
+ createdAt
425
+ updatedAt
426
+ name
427
+ caption
428
+ path
429
+ path512
430
+ path256
431
+ }
432
+ }
433
+ comments {
434
+ id
435
+ createdAt
436
+ comment
437
+ likes
438
+ user {
439
+ id
440
+ displayName
441
+ }
442
+ dislikes
443
+ isLikedByMe
444
+ questionId
445
+ replies {
446
+ id
447
+ createdAt
448
+ comment
449
+ user {
450
+ id
451
+ displayName
452
+ }
453
+ likes
454
+ dislikes
455
+ isLikedByMe
456
+ questionId
457
+ }
458
+ }
459
+ concept {
460
+ id
461
+ name
462
+ chapter {
463
+ id
464
+ explanation
465
+ pictures {
466
+ id
467
+ createdAt
468
+ updatedAt
469
+ name
470
+ caption
471
+ path
472
+ path512
473
+ path256
474
+ topicId
475
+ topic {
476
+ id
477
+ name
478
+ typeId
479
+ }
480
+ }
481
+ }
482
+ videos {
483
+ id
484
+ title
485
+ museId
486
+ startTime
487
+ endTime
488
+ thumbnail
489
+ concepts {
490
+ id
491
+ name
492
+ }
493
+ live
494
+ description
495
+ duration
496
+ }
497
+ }
498
+ pictures {
499
+ id
500
+ createdAt
501
+ updatedAt
502
+ name
503
+ caption
504
+ path
505
+ path512
506
+ path256
507
+ topicId
508
+ topic {
509
+ id
510
+ name
511
+ typeId
512
+ }
513
+ }
514
+ difficulty
515
+ psaSectionId
516
+ likes
517
+ dislikes
518
+ isLikedByMe
519
+ prescribeAnswer: answer {
520
+ dose {
521
+ value
522
+ display
523
+ }
524
+ drug {
525
+ value
526
+ display
527
+ }
528
+ route {
529
+ value
530
+ display
531
+ }
532
+ frequency {
533
+ display
534
+ value
535
+ }
536
+ duration {
537
+ display
538
+ value
539
+ }
540
+ units {
541
+ display
542
+ value
543
+ }
544
+ }
545
+ }
546
+ }
44
547
  }
45
548
  mockTestId
46
549
  correct
@@ -55,7 +558,6 @@ export const BUILD_MARKSHEET = gql `
55
558
  * reBuildMarksheet
56
559
  */
57
560
  export const RE_BUILD_MARKSHEET = gql `
58
- ${MARKSHEET_MARK_FIELDS}
59
561
  mutation ReBuildMarksheet($marksheetId: Int!) {
60
562
  restricted {
61
563
  reBuildMarksheet(marksheetId: $marksheetId) {
@@ -93,7 +595,512 @@ export const RE_BUILD_MARKSHEET = gql `
93
595
  id
94
596
  }
95
597
  marks {
96
- ...MarksheetMarkFields
598
+ id
599
+ flagged
600
+ index
601
+ questionChoiceId
602
+ marksheetId
603
+ timeTaken
604
+ isAnswered
605
+ mark
606
+ question {
607
+ ... on QuestionSBA {
608
+ conceptId
609
+ difficulty
610
+ dislikes
611
+ explanation
612
+ id
613
+ isLikedByMe
614
+ likes
615
+ question
616
+ totalVotes
617
+ typeId
618
+ choices {
619
+ id
620
+ explanation
621
+ name
622
+ label
623
+ answer
624
+ votes
625
+ picture {
626
+ id
627
+ createdAt
628
+ updatedAt
629
+ name
630
+ caption
631
+ path
632
+ path512
633
+ path256
634
+ }
635
+ }
636
+ comments {
637
+ id
638
+ createdAt
639
+ comment
640
+ likes
641
+ user {
642
+ id
643
+ displayName
644
+ }
645
+ dislikes
646
+ isLikedByMe
647
+ questionId
648
+ replies {
649
+ id
650
+ createdAt
651
+ comment
652
+ user {
653
+ id
654
+ displayName
655
+ }
656
+ likes
657
+ dislikes
658
+ isLikedByMe
659
+ questionId
660
+ }
661
+ }
662
+ concept {
663
+ id
664
+ name
665
+ chapter {
666
+ id
667
+ explanation
668
+ pictures {
669
+ id
670
+ createdAt
671
+ updatedAt
672
+ name
673
+ caption
674
+ path
675
+ path512
676
+ path256
677
+ topicId
678
+ topic {
679
+ id
680
+ name
681
+ typeId
682
+ }
683
+ }
684
+ }
685
+ videos {
686
+ id
687
+ title
688
+ museId
689
+ startTime
690
+ endTime
691
+ thumbnail
692
+ concepts {
693
+ id
694
+ name
695
+ }
696
+ live
697
+ description
698
+ duration
699
+ }
700
+ }
701
+ pictures {
702
+ id
703
+ createdAt
704
+ updatedAt
705
+ name
706
+ caption
707
+ path
708
+ path512
709
+ path256
710
+ topicId
711
+ topic {
712
+ id
713
+ name
714
+ typeId
715
+ }
716
+ }
717
+ difficulty
718
+ psaSectionId
719
+ likes
720
+ dislikes
721
+ isLikedByMe
722
+ sbaAnswer: answer
723
+ }
724
+ ... on QuestionQA {
725
+ conceptId
726
+ difficulty
727
+ dislikes
728
+ explanation
729
+ id
730
+ isLikedByMe
731
+ likes
732
+ question
733
+ totalVotes
734
+ typeId
735
+ choices {
736
+ id
737
+ explanation
738
+ name
739
+ label
740
+ answer
741
+ votes
742
+ picture {
743
+ id
744
+ createdAt
745
+ updatedAt
746
+ name
747
+ caption
748
+ path
749
+ path512
750
+ path256
751
+ }
752
+ }
753
+ comments {
754
+ id
755
+ createdAt
756
+ comment
757
+ likes
758
+ user {
759
+ id
760
+ displayName
761
+ }
762
+ dislikes
763
+ isLikedByMe
764
+ questionId
765
+ replies {
766
+ id
767
+ createdAt
768
+ comment
769
+ user {
770
+ id
771
+ displayName
772
+ }
773
+ likes
774
+ dislikes
775
+ isLikedByMe
776
+ questionId
777
+ }
778
+ }
779
+ concept {
780
+ id
781
+ name
782
+ chapter {
783
+ id
784
+ explanation
785
+ pictures {
786
+ id
787
+ createdAt
788
+ updatedAt
789
+ name
790
+ caption
791
+ path
792
+ path512
793
+ path256
794
+ topicId
795
+ topic {
796
+ id
797
+ name
798
+ typeId
799
+ }
800
+ }
801
+ }
802
+ videos {
803
+ id
804
+ title
805
+ museId
806
+ startTime
807
+ endTime
808
+ thumbnail
809
+ concepts {
810
+ id
811
+ name
812
+ }
813
+ live
814
+ description
815
+ duration
816
+ }
817
+ }
818
+ pictures {
819
+ id
820
+ createdAt
821
+ updatedAt
822
+ name
823
+ caption
824
+ path
825
+ path512
826
+ path256
827
+ topicId
828
+ topic {
829
+ id
830
+ name
831
+ typeId
832
+ }
833
+ }
834
+ difficulty
835
+ psaSectionId
836
+ likes
837
+ dislikes
838
+ isLikedByMe
839
+ qaAnswer: answer {
840
+ dose
841
+ units
842
+ }
843
+ }
844
+ ... on QuestionMultiA {
845
+ conceptId
846
+ difficulty
847
+ dislikes
848
+ explanation
849
+ id
850
+ isLikedByMe
851
+ likes
852
+ question
853
+ totalVotes
854
+ typeId
855
+ choices {
856
+ id
857
+ explanation
858
+ name
859
+ label
860
+ answer
861
+ votes
862
+ picture {
863
+ id
864
+ createdAt
865
+ updatedAt
866
+ name
867
+ caption
868
+ path
869
+ path512
870
+ path256
871
+ }
872
+ }
873
+ comments {
874
+ id
875
+ createdAt
876
+ comment
877
+ likes
878
+ user {
879
+ id
880
+ displayName
881
+ }
882
+ dislikes
883
+ isLikedByMe
884
+ questionId
885
+ replies {
886
+ id
887
+ createdAt
888
+ comment
889
+ user {
890
+ id
891
+ displayName
892
+ }
893
+ likes
894
+ dislikes
895
+ isLikedByMe
896
+ questionId
897
+ }
898
+ }
899
+ concept {
900
+ id
901
+ name
902
+ chapter {
903
+ id
904
+ explanation
905
+ pictures {
906
+ id
907
+ createdAt
908
+ updatedAt
909
+ name
910
+ caption
911
+ path
912
+ path512
913
+ path256
914
+ topicId
915
+ topic {
916
+ id
917
+ name
918
+ typeId
919
+ }
920
+ }
921
+ }
922
+ videos {
923
+ id
924
+ title
925
+ museId
926
+ startTime
927
+ endTime
928
+ thumbnail
929
+ concepts {
930
+ id
931
+ name
932
+ }
933
+ live
934
+ description
935
+ duration
936
+ }
937
+ }
938
+ pictures {
939
+ id
940
+ createdAt
941
+ updatedAt
942
+ name
943
+ caption
944
+ path
945
+ path512
946
+ path256
947
+ topicId
948
+ topic {
949
+ id
950
+ name
951
+ typeId
952
+ }
953
+ }
954
+ difficulty
955
+ psaSectionId
956
+ likes
957
+ dislikes
958
+ isLikedByMe
959
+ multiAnswer: answer
960
+ }
961
+ ... on QuestionPrescription {
962
+ conceptId
963
+ difficulty
964
+ dislikes
965
+ explanation
966
+ id
967
+ isLikedByMe
968
+ likes
969
+ question
970
+ totalVotes
971
+ typeId
972
+ choices {
973
+ id
974
+ explanation
975
+ name
976
+ label
977
+ answer
978
+ votes
979
+ picture {
980
+ id
981
+ createdAt
982
+ updatedAt
983
+ name
984
+ caption
985
+ path
986
+ path512
987
+ path256
988
+ }
989
+ }
990
+ comments {
991
+ id
992
+ createdAt
993
+ comment
994
+ likes
995
+ user {
996
+ id
997
+ displayName
998
+ }
999
+ dislikes
1000
+ isLikedByMe
1001
+ questionId
1002
+ replies {
1003
+ id
1004
+ createdAt
1005
+ comment
1006
+ user {
1007
+ id
1008
+ displayName
1009
+ }
1010
+ likes
1011
+ dislikes
1012
+ isLikedByMe
1013
+ questionId
1014
+ }
1015
+ }
1016
+ concept {
1017
+ id
1018
+ name
1019
+ chapter {
1020
+ id
1021
+ explanation
1022
+ pictures {
1023
+ id
1024
+ createdAt
1025
+ updatedAt
1026
+ name
1027
+ caption
1028
+ path
1029
+ path512
1030
+ path256
1031
+ topicId
1032
+ topic {
1033
+ id
1034
+ name
1035
+ typeId
1036
+ }
1037
+ }
1038
+ }
1039
+ videos {
1040
+ id
1041
+ title
1042
+ museId
1043
+ startTime
1044
+ endTime
1045
+ thumbnail
1046
+ concepts {
1047
+ id
1048
+ name
1049
+ }
1050
+ live
1051
+ description
1052
+ duration
1053
+ }
1054
+ }
1055
+ pictures {
1056
+ id
1057
+ createdAt
1058
+ updatedAt
1059
+ name
1060
+ caption
1061
+ path
1062
+ path512
1063
+ path256
1064
+ topicId
1065
+ topic {
1066
+ id
1067
+ name
1068
+ typeId
1069
+ }
1070
+ }
1071
+ difficulty
1072
+ psaSectionId
1073
+ likes
1074
+ dislikes
1075
+ isLikedByMe
1076
+ prescribeAnswer: answer {
1077
+ dose {
1078
+ value
1079
+ display
1080
+ }
1081
+ drug {
1082
+ value
1083
+ display
1084
+ }
1085
+ route {
1086
+ value
1087
+ display
1088
+ }
1089
+ frequency {
1090
+ display
1091
+ value
1092
+ }
1093
+ duration {
1094
+ display
1095
+ value
1096
+ }
1097
+ units {
1098
+ display
1099
+ value
1100
+ }
1101
+ }
1102
+ }
1103
+ }
97
1104
  }
98
1105
  mockTestId
99
1106
  correct
@@ -245,7 +1252,6 @@ export const START_OR_JOIN_MARKSHEET = gql `
245
1252
  }
246
1253
  `;
247
1254
  export const MODIFY_MARKSHEET_INFO = gql `
248
- ${MARKSHEET_MARK_FIELDS}
249
1255
  mutation ModifyMarksheetInfo($input: ModifyMarksheetInfoInput) {
250
1256
  restricted {
251
1257
  modifyMarksheetInfo(input: $input) {
@@ -285,7 +1291,512 @@ export const MODIFY_MARKSHEET_INFO = gql `
285
1291
  displayName
286
1292
  }
287
1293
  marks {
288
- ...MarksheetMarkFields
1294
+ id
1295
+ flagged
1296
+ index
1297
+ questionChoiceId
1298
+ marksheetId
1299
+ timeTaken
1300
+ isAnswered
1301
+ mark
1302
+ question {
1303
+ ... on QuestionSBA {
1304
+ conceptId
1305
+ difficulty
1306
+ dislikes
1307
+ explanation
1308
+ id
1309
+ isLikedByMe
1310
+ likes
1311
+ question
1312
+ totalVotes
1313
+ typeId
1314
+ choices {
1315
+ id
1316
+ explanation
1317
+ name
1318
+ label
1319
+ answer
1320
+ votes
1321
+ picture {
1322
+ id
1323
+ createdAt
1324
+ updatedAt
1325
+ name
1326
+ caption
1327
+ path
1328
+ path512
1329
+ path256
1330
+ }
1331
+ }
1332
+ comments {
1333
+ id
1334
+ createdAt
1335
+ comment
1336
+ likes
1337
+ user {
1338
+ id
1339
+ displayName
1340
+ }
1341
+ dislikes
1342
+ isLikedByMe
1343
+ questionId
1344
+ replies {
1345
+ id
1346
+ createdAt
1347
+ comment
1348
+ user {
1349
+ id
1350
+ displayName
1351
+ }
1352
+ likes
1353
+ dislikes
1354
+ isLikedByMe
1355
+ questionId
1356
+ }
1357
+ }
1358
+ concept {
1359
+ id
1360
+ name
1361
+ chapter {
1362
+ id
1363
+ explanation
1364
+ pictures {
1365
+ id
1366
+ createdAt
1367
+ updatedAt
1368
+ name
1369
+ caption
1370
+ path
1371
+ path512
1372
+ path256
1373
+ topicId
1374
+ topic {
1375
+ id
1376
+ name
1377
+ typeId
1378
+ }
1379
+ }
1380
+ }
1381
+ videos {
1382
+ id
1383
+ title
1384
+ museId
1385
+ startTime
1386
+ endTime
1387
+ thumbnail
1388
+ concepts {
1389
+ id
1390
+ name
1391
+ }
1392
+ live
1393
+ description
1394
+ duration
1395
+ }
1396
+ }
1397
+ pictures {
1398
+ id
1399
+ createdAt
1400
+ updatedAt
1401
+ name
1402
+ caption
1403
+ path
1404
+ path512
1405
+ path256
1406
+ topicId
1407
+ topic {
1408
+ id
1409
+ name
1410
+ typeId
1411
+ }
1412
+ }
1413
+ difficulty
1414
+ psaSectionId
1415
+ likes
1416
+ dislikes
1417
+ isLikedByMe
1418
+ sbaAnswer: answer
1419
+ }
1420
+ ... on QuestionQA {
1421
+ conceptId
1422
+ difficulty
1423
+ dislikes
1424
+ explanation
1425
+ id
1426
+ isLikedByMe
1427
+ likes
1428
+ question
1429
+ totalVotes
1430
+ typeId
1431
+ choices {
1432
+ id
1433
+ explanation
1434
+ name
1435
+ label
1436
+ answer
1437
+ votes
1438
+ picture {
1439
+ id
1440
+ createdAt
1441
+ updatedAt
1442
+ name
1443
+ caption
1444
+ path
1445
+ path512
1446
+ path256
1447
+ }
1448
+ }
1449
+ comments {
1450
+ id
1451
+ createdAt
1452
+ comment
1453
+ likes
1454
+ user {
1455
+ id
1456
+ displayName
1457
+ }
1458
+ dislikes
1459
+ isLikedByMe
1460
+ questionId
1461
+ replies {
1462
+ id
1463
+ createdAt
1464
+ comment
1465
+ user {
1466
+ id
1467
+ displayName
1468
+ }
1469
+ likes
1470
+ dislikes
1471
+ isLikedByMe
1472
+ questionId
1473
+ }
1474
+ }
1475
+ concept {
1476
+ id
1477
+ name
1478
+ chapter {
1479
+ id
1480
+ explanation
1481
+ pictures {
1482
+ id
1483
+ createdAt
1484
+ updatedAt
1485
+ name
1486
+ caption
1487
+ path
1488
+ path512
1489
+ path256
1490
+ topicId
1491
+ topic {
1492
+ id
1493
+ name
1494
+ typeId
1495
+ }
1496
+ }
1497
+ }
1498
+ videos {
1499
+ id
1500
+ title
1501
+ museId
1502
+ startTime
1503
+ endTime
1504
+ thumbnail
1505
+ concepts {
1506
+ id
1507
+ name
1508
+ }
1509
+ live
1510
+ description
1511
+ duration
1512
+ }
1513
+ }
1514
+ pictures {
1515
+ id
1516
+ createdAt
1517
+ updatedAt
1518
+ name
1519
+ caption
1520
+ path
1521
+ path512
1522
+ path256
1523
+ topicId
1524
+ topic {
1525
+ id
1526
+ name
1527
+ typeId
1528
+ }
1529
+ }
1530
+ difficulty
1531
+ psaSectionId
1532
+ likes
1533
+ dislikes
1534
+ isLikedByMe
1535
+ qaAnswer: answer {
1536
+ dose
1537
+ units
1538
+ }
1539
+ }
1540
+ ... on QuestionMultiA {
1541
+ conceptId
1542
+ difficulty
1543
+ dislikes
1544
+ explanation
1545
+ id
1546
+ isLikedByMe
1547
+ likes
1548
+ question
1549
+ totalVotes
1550
+ typeId
1551
+ choices {
1552
+ id
1553
+ explanation
1554
+ name
1555
+ label
1556
+ answer
1557
+ votes
1558
+ picture {
1559
+ id
1560
+ createdAt
1561
+ updatedAt
1562
+ name
1563
+ caption
1564
+ path
1565
+ path512
1566
+ path256
1567
+ }
1568
+ }
1569
+ comments {
1570
+ id
1571
+ createdAt
1572
+ comment
1573
+ likes
1574
+ user {
1575
+ id
1576
+ displayName
1577
+ }
1578
+ dislikes
1579
+ isLikedByMe
1580
+ questionId
1581
+ replies {
1582
+ id
1583
+ createdAt
1584
+ comment
1585
+ user {
1586
+ id
1587
+ displayName
1588
+ }
1589
+ likes
1590
+ dislikes
1591
+ isLikedByMe
1592
+ questionId
1593
+ }
1594
+ }
1595
+ concept {
1596
+ id
1597
+ name
1598
+ chapter {
1599
+ id
1600
+ explanation
1601
+ pictures {
1602
+ id
1603
+ createdAt
1604
+ updatedAt
1605
+ name
1606
+ caption
1607
+ path
1608
+ path512
1609
+ path256
1610
+ topicId
1611
+ topic {
1612
+ id
1613
+ name
1614
+ typeId
1615
+ }
1616
+ }
1617
+ }
1618
+ videos {
1619
+ id
1620
+ title
1621
+ museId
1622
+ startTime
1623
+ endTime
1624
+ thumbnail
1625
+ concepts {
1626
+ id
1627
+ name
1628
+ }
1629
+ live
1630
+ description
1631
+ duration
1632
+ }
1633
+ }
1634
+ pictures {
1635
+ id
1636
+ createdAt
1637
+ updatedAt
1638
+ name
1639
+ caption
1640
+ path
1641
+ path512
1642
+ path256
1643
+ topicId
1644
+ topic {
1645
+ id
1646
+ name
1647
+ typeId
1648
+ }
1649
+ }
1650
+ difficulty
1651
+ psaSectionId
1652
+ likes
1653
+ dislikes
1654
+ isLikedByMe
1655
+ multiAnswer: answer
1656
+ }
1657
+ ... on QuestionPrescription {
1658
+ conceptId
1659
+ difficulty
1660
+ dislikes
1661
+ explanation
1662
+ id
1663
+ isLikedByMe
1664
+ likes
1665
+ question
1666
+ totalVotes
1667
+ typeId
1668
+ choices {
1669
+ id
1670
+ explanation
1671
+ name
1672
+ label
1673
+ answer
1674
+ votes
1675
+ picture {
1676
+ id
1677
+ createdAt
1678
+ updatedAt
1679
+ name
1680
+ caption
1681
+ path
1682
+ path512
1683
+ path256
1684
+ }
1685
+ }
1686
+ comments {
1687
+ id
1688
+ createdAt
1689
+ comment
1690
+ likes
1691
+ user {
1692
+ id
1693
+ displayName
1694
+ }
1695
+ dislikes
1696
+ isLikedByMe
1697
+ questionId
1698
+ replies {
1699
+ id
1700
+ createdAt
1701
+ comment
1702
+ user {
1703
+ id
1704
+ displayName
1705
+ }
1706
+ likes
1707
+ dislikes
1708
+ isLikedByMe
1709
+ questionId
1710
+ }
1711
+ }
1712
+ concept {
1713
+ id
1714
+ name
1715
+ chapter {
1716
+ id
1717
+ explanation
1718
+ pictures {
1719
+ id
1720
+ createdAt
1721
+ updatedAt
1722
+ name
1723
+ caption
1724
+ path
1725
+ path512
1726
+ path256
1727
+ topicId
1728
+ topic {
1729
+ id
1730
+ name
1731
+ typeId
1732
+ }
1733
+ }
1734
+ }
1735
+ videos {
1736
+ id
1737
+ title
1738
+ museId
1739
+ startTime
1740
+ endTime
1741
+ thumbnail
1742
+ concepts {
1743
+ id
1744
+ name
1745
+ }
1746
+ live
1747
+ description
1748
+ duration
1749
+ }
1750
+ }
1751
+ pictures {
1752
+ id
1753
+ createdAt
1754
+ updatedAt
1755
+ name
1756
+ caption
1757
+ path
1758
+ path512
1759
+ path256
1760
+ topicId
1761
+ topic {
1762
+ id
1763
+ name
1764
+ typeId
1765
+ }
1766
+ }
1767
+ difficulty
1768
+ psaSectionId
1769
+ likes
1770
+ dislikes
1771
+ isLikedByMe
1772
+ prescribeAnswer: answer {
1773
+ dose {
1774
+ value
1775
+ display
1776
+ }
1777
+ drug {
1778
+ value
1779
+ display
1780
+ }
1781
+ route {
1782
+ value
1783
+ display
1784
+ }
1785
+ frequency {
1786
+ display
1787
+ value
1788
+ }
1789
+ duration {
1790
+ display
1791
+ value
1792
+ }
1793
+ units {
1794
+ display
1795
+ value
1796
+ }
1797
+ }
1798
+ }
1799
+ }
289
1800
  }
290
1801
  mockTestId
291
1802
  correct