@quesmed/types 2.6.29 → 2.6.31

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.
Files changed (55) hide show
  1. package/dist/cjs/resolvers/fragments/chapter.js +3 -18
  2. package/dist/cjs/resolvers/fragments/concept.d.ts +1 -2
  3. package/dist/cjs/resolvers/fragments/concept.js +18 -57
  4. package/dist/cjs/resolvers/fragments/index.d.ts +2 -0
  5. package/dist/cjs/resolvers/fragments/index.js +2 -0
  6. package/dist/cjs/resolvers/fragments/marksheet.d.ts +14 -0
  7. package/dist/cjs/resolvers/fragments/marksheet.js +127 -127
  8. package/dist/cjs/resolvers/fragments/mockTest.d.ts +6 -0
  9. package/dist/cjs/resolvers/fragments/mockTest.js +27 -1
  10. package/dist/cjs/resolvers/fragments/osce.d.ts +3 -0
  11. package/dist/cjs/resolvers/fragments/osce.js +23 -1
  12. package/dist/cjs/resolvers/fragments/question.d.ts +5 -0
  13. package/dist/cjs/resolvers/fragments/question.js +176 -0
  14. package/dist/cjs/resolvers/fragments/topic.d.ts +2 -0
  15. package/dist/cjs/resolvers/fragments/topic.js +25 -1
  16. package/dist/cjs/resolvers/fragments/video.d.ts +1 -0
  17. package/dist/cjs/resolvers/fragments/video.js +17 -28
  18. package/dist/cjs/resolvers/mutation/restricted/marksheet.d.ts +0 -8
  19. package/dist/cjs/resolvers/mutation/restricted/marksheet.js +18 -4128
  20. package/dist/cjs/resolvers/mutation/restricted/mockTest.d.ts +2 -3
  21. package/dist/cjs/resolvers/mutation/restricted/mockTest.js +22 -13
  22. package/dist/cjs/resolvers/mutation/restricted/osce.d.ts +46 -2
  23. package/dist/cjs/resolvers/mutation/restricted/osce.js +47 -1
  24. package/dist/cjs/resolvers/mutation/restricted/questionDiscussion.d.ts +6 -21
  25. package/dist/cjs/resolvers/mutation/restricted/questionDiscussion.js +27 -532
  26. package/dist/cjs/resolvers/query/restricted/marksheet.js +5 -2025
  27. package/dist/cjs/resolvers/query/restricted/question.js +3 -932
  28. package/dist/mjs/resolvers/fragments/chapter.js +3 -18
  29. package/dist/mjs/resolvers/fragments/concept.d.ts +1 -2
  30. package/dist/mjs/resolvers/fragments/concept.js +18 -57
  31. package/dist/mjs/resolvers/fragments/index.d.ts +2 -0
  32. package/dist/mjs/resolvers/fragments/index.js +2 -0
  33. package/dist/mjs/resolvers/fragments/marksheet.d.ts +14 -0
  34. package/dist/mjs/resolvers/fragments/marksheet.js +126 -126
  35. package/dist/mjs/resolvers/fragments/mockTest.d.ts +6 -0
  36. package/dist/mjs/resolvers/fragments/mockTest.js +26 -0
  37. package/dist/mjs/resolvers/fragments/osce.d.ts +3 -0
  38. package/dist/mjs/resolvers/fragments/osce.js +22 -0
  39. package/dist/mjs/resolvers/fragments/question.d.ts +5 -0
  40. package/dist/mjs/resolvers/fragments/question.js +173 -0
  41. package/dist/mjs/resolvers/fragments/topic.d.ts +2 -0
  42. package/dist/mjs/resolvers/fragments/topic.js +24 -0
  43. package/dist/mjs/resolvers/fragments/video.d.ts +1 -0
  44. package/dist/mjs/resolvers/fragments/video.js +16 -27
  45. package/dist/mjs/resolvers/mutation/restricted/marksheet.d.ts +0 -8
  46. package/dist/mjs/resolvers/mutation/restricted/marksheet.js +14 -4124
  47. package/dist/mjs/resolvers/mutation/restricted/mockTest.d.ts +2 -3
  48. package/dist/mjs/resolvers/mutation/restricted/mockTest.js +20 -11
  49. package/dist/mjs/resolvers/mutation/restricted/osce.d.ts +46 -2
  50. package/dist/mjs/resolvers/mutation/restricted/osce.js +45 -1
  51. package/dist/mjs/resolvers/mutation/restricted/questionDiscussion.d.ts +6 -21
  52. package/dist/mjs/resolvers/mutation/restricted/questionDiscussion.js +26 -530
  53. package/dist/mjs/resolvers/query/restricted/marksheet.js +5 -2025
  54. package/dist/mjs/resolvers/query/restricted/question.js +3 -932
  55. package/package.json +6 -1
@@ -2,1023 +2,13 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PRE_BUILD_MARKSHEET = exports.HEARTBEAT_QBANK = exports.MARKSHEET_FEEDBACK = exports.FLAGGED_QUESTIONS_MARKSHEET = exports.FLAGGED_QUESTIONS = exports.LATEST_PAST_SESSION_ID = exports.LATEST_PAST_MARKSHEET_ID = exports.MARKSHEETS_WINDOW = exports.MARKSHEETS = exports.MARKSHEET = void 0;
4
4
  const client_1 = require("@apollo/client");
5
+ const marksheet_1 = require("../../fragments/marksheet");
5
6
  exports.MARKSHEET = (0, client_1.gql) `
7
+ ${marksheet_1.MARKSHEET_FIELDS}
6
8
  query Marksheet($id: Int!) {
7
9
  restricted {
8
10
  marksheet(id: $id) {
9
- id
10
- topicConceptData
11
- currentMarkId
12
- completed
13
- passingMark
14
- duration
15
- timeTaken
16
- entitlement {
17
- id
18
- name
19
- }
20
- topicIds
21
- topicNames
22
- mockTestId
23
- totalQuestions
24
- solo
25
- agoraId
26
- sessionId
27
- state
28
- user {
29
- id
30
- displayName
31
- }
32
- users {
33
- id
34
- displayName
35
- }
36
- activeUsers {
37
- id
38
- displayName
39
- }
40
- builderConfig {
41
- difficulty
42
- isTest
43
- numberOfQuestions
44
- secondsPerQuestion
45
- unseen
46
- seenCorrect
47
- seenIncorrect
48
- }
49
- preBuildData {
50
- buildRef
51
- seenCorrect
52
- seenIncorrect
53
- unseen
54
- }
55
- createdAt
56
- startedAt
57
- endedAt
58
- typeId
59
- isTestMarksheet
60
- source
61
- correct
62
- incorrect
63
- marks {
64
- id
65
- flagged
66
- index
67
- questionChoiceId
68
- marksheetId
69
- timeTaken
70
- isAnswered
71
- striked
72
- mark
73
- question {
74
- ... on QuestionSBA {
75
- conceptId
76
- difficulty
77
- dislikes
78
- explanation
79
- id
80
- isLikedByMe
81
- likes
82
- question
83
- totalVotes
84
- typeId
85
- highlights {
86
- start
87
- end
88
- text
89
- part
90
- tag
91
- color
92
- }
93
- choices {
94
- id
95
- explanation
96
- name
97
- label
98
- answer
99
- votes
100
- picture {
101
- id
102
- createdAt
103
- updatedAt
104
- name
105
- caption
106
- path
107
- path512
108
- path256
109
- thumbhash
110
- }
111
- }
112
- comments {
113
- id
114
- createdAt
115
- comment
116
- parentId
117
- likes
118
- user {
119
- id
120
- displayName
121
- }
122
- dislikes
123
- isLikedByMe
124
- questionId
125
- replies {
126
- id
127
- createdAt
128
- comment
129
- parentId
130
- user {
131
- id
132
- displayName
133
- }
134
- likes
135
- dislikes
136
- isLikedByMe
137
- questionId
138
- }
139
- }
140
- concept {
141
- id
142
- name
143
- status
144
- totalCards
145
- topic {
146
- id
147
- name
148
- typeId
149
- }
150
- chapter {
151
- id
152
- explanation
153
- pictures {
154
- id
155
- createdAt
156
- updatedAt
157
- name
158
- caption
159
- path
160
- path512
161
- path256
162
- thumbhash
163
- index
164
- topicId
165
- }
166
- }
167
- videos {
168
- id
169
- status
170
- title
171
- museId
172
- startTime
173
- endTime
174
- thumbnail
175
- concepts {
176
- id
177
- name
178
- }
179
- live
180
- description
181
- duration
182
- }
183
- }
184
- pictures {
185
- id
186
- createdAt
187
- updatedAt
188
- name
189
- index
190
- caption
191
- path
192
- path512
193
- path256
194
- thumbhash
195
- topicId
196
- }
197
- difficulty
198
- psaSectionId
199
- likes
200
- dislikes
201
- isLikedByMe
202
- sbaAnswer: answer
203
- }
204
- ... on QuestionQA {
205
- conceptId
206
- difficulty
207
- dislikes
208
- explanation
209
- id
210
- isLikedByMe
211
- likes
212
- question
213
- totalVotes
214
- typeId
215
- highlights {
216
- start
217
- end
218
- text
219
- part
220
- tag
221
- color
222
- }
223
- choices {
224
- id
225
- explanation
226
- name
227
- label
228
- answer
229
- votes
230
- picture {
231
- id
232
- createdAt
233
- updatedAt
234
- name
235
- caption
236
- path
237
- path512
238
- path256
239
- thumbhash
240
- }
241
- }
242
- comments {
243
- id
244
- createdAt
245
- comment
246
- parentId
247
- likes
248
- user {
249
- id
250
- displayName
251
- }
252
- dislikes
253
- isLikedByMe
254
- questionId
255
- replies {
256
- id
257
- createdAt
258
- comment
259
- parentId
260
- user {
261
- id
262
- displayName
263
- }
264
- likes
265
- dislikes
266
- isLikedByMe
267
- questionId
268
- }
269
- }
270
- concept {
271
- id
272
- name
273
- status
274
- totalCards
275
- chapter {
276
- id
277
- explanation
278
- pictures {
279
- id
280
- createdAt
281
- updatedAt
282
- name
283
- caption
284
- path
285
- path512
286
- path256
287
- thumbhash
288
- index
289
- topicId
290
- }
291
- }
292
- videos {
293
- id
294
- status
295
- title
296
- museId
297
- startTime
298
- endTime
299
- thumbnail
300
- concepts {
301
- id
302
- name
303
- }
304
- live
305
- description
306
- duration
307
- }
308
- }
309
- pictures {
310
- id
311
- createdAt
312
- updatedAt
313
- name
314
- index
315
- caption
316
- path
317
- path512
318
- path256
319
- thumbhash
320
- topicId
321
- }
322
- difficulty
323
- psaSectionId
324
- likes
325
- dislikes
326
- isLikedByMe
327
- qaAnswer: answer {
328
- dose
329
- units
330
- }
331
- }
332
- ... on QuestionMultiA {
333
- conceptId
334
- difficulty
335
- dislikes
336
- explanation
337
- id
338
- isLikedByMe
339
- likes
340
- question
341
- totalVotes
342
- typeId
343
- highlights {
344
- start
345
- end
346
- text
347
- part
348
- tag
349
- color
350
- }
351
- choices {
352
- id
353
- explanation
354
- name
355
- label
356
- answer
357
- votes
358
- picture {
359
- id
360
- createdAt
361
- updatedAt
362
- name
363
- caption
364
- path
365
- path512
366
- path256
367
- thumbhash
368
- }
369
- }
370
- comments {
371
- id
372
- createdAt
373
- comment
374
- parentId
375
- likes
376
- user {
377
- id
378
- displayName
379
- }
380
- dislikes
381
- isLikedByMe
382
- questionId
383
- replies {
384
- id
385
- createdAt
386
- comment
387
- parentId
388
- user {
389
- id
390
- displayName
391
- }
392
- likes
393
- dislikes
394
- isLikedByMe
395
- questionId
396
- }
397
- }
398
- concept {
399
- id
400
- name
401
- status
402
- totalCards
403
- topic {
404
- id
405
- name
406
- typeId
407
- }
408
- chapter {
409
- id
410
- explanation
411
- pictures {
412
- id
413
- createdAt
414
- updatedAt
415
- name
416
- caption
417
- path
418
- path512
419
- path256
420
- thumbhash
421
- index
422
- topicId
423
- }
424
- }
425
- videos {
426
- id
427
- status
428
- title
429
- museId
430
- startTime
431
- endTime
432
- thumbnail
433
- concepts {
434
- id
435
- name
436
- }
437
- live
438
- description
439
- duration
440
- }
441
- }
442
- pictures {
443
- id
444
- createdAt
445
- updatedAt
446
- name
447
- index
448
- caption
449
- path
450
- path512
451
- path256
452
- thumbhash
453
- topicId
454
- }
455
- difficulty
456
- psaSectionId
457
- likes
458
- dislikes
459
- isLikedByMe
460
- multiAnswer: answer
461
- }
462
- ... on QuestionPrescription {
463
- conceptId
464
- difficulty
465
- dislikes
466
- explanation
467
- id
468
- isLikedByMe
469
- likes
470
- question
471
- totalVotes
472
- typeId
473
- highlights {
474
- start
475
- end
476
- text
477
- part
478
- tag
479
- color
480
- }
481
- choices {
482
- id
483
- explanation
484
- name
485
- label
486
- answer
487
- votes
488
- picture {
489
- id
490
- createdAt
491
- updatedAt
492
- name
493
- caption
494
- path
495
- path512
496
- path256
497
- thumbhash
498
- }
499
- }
500
- comments {
501
- id
502
- createdAt
503
- comment
504
- parentId
505
- likes
506
- user {
507
- id
508
- displayName
509
- }
510
- dislikes
511
- isLikedByMe
512
- questionId
513
- replies {
514
- id
515
- createdAt
516
- comment
517
- parentId
518
- user {
519
- id
520
- displayName
521
- }
522
- likes
523
- dislikes
524
- isLikedByMe
525
- questionId
526
- }
527
- }
528
- concept {
529
- id
530
- name
531
- status
532
- totalCards
533
- topic {
534
- id
535
- name
536
- typeId
537
- }
538
- chapter {
539
- id
540
- explanation
541
- pictures {
542
- id
543
- createdAt
544
- updatedAt
545
- name
546
- caption
547
- path
548
- path512
549
- path256
550
- thumbhash
551
- index
552
- topicId
553
- }
554
- }
555
- videos {
556
- id
557
- status
558
- title
559
- museId
560
- startTime
561
- endTime
562
- thumbnail
563
- concepts {
564
- id
565
- name
566
- }
567
- live
568
- description
569
- duration
570
- }
571
- }
572
- pictures {
573
- id
574
- createdAt
575
- updatedAt
576
- name
577
- index
578
- caption
579
- path
580
- path512
581
- path256
582
- thumbhash
583
- topicId
584
- }
585
- difficulty
586
- psaSectionId
587
- likes
588
- dislikes
589
- isLikedByMe
590
- prescribeAnswer: answer {
591
- dose {
592
- value
593
- label
594
- visible
595
- }
596
- drug {
597
- value
598
- label
599
- visible
600
- }
601
- route {
602
- value
603
- label
604
- visible
605
- }
606
- frequency {
607
- value
608
- label
609
- visible
610
- }
611
- duration {
612
- value
613
- label
614
- visible
615
- }
616
- unit {
617
- value
618
- label
619
- visible
620
- }
621
- }
622
- }
623
- ... on QuestionEMQ {
624
- conceptId
625
- difficulty
626
- dislikes
627
- explanation
628
- id
629
- isLikedByMe
630
- likes
631
- question
632
- totalVotes
633
- typeId
634
- highlights {
635
- start
636
- end
637
- text
638
- part
639
- tag
640
- color
641
- }
642
- cases {
643
- id
644
- questionId
645
- case
646
- explanation
647
- label
648
- }
649
- choices {
650
- id
651
- explanation
652
- name
653
- label
654
- answer
655
- votes
656
- picture {
657
- id
658
- createdAt
659
- updatedAt
660
- name
661
- caption
662
- path
663
- path512
664
- path256
665
- thumbhash
666
- }
667
- }
668
- comments {
669
- id
670
- createdAt
671
- comment
672
- parentId
673
- likes
674
- user {
675
- id
676
- displayName
677
- }
678
- dislikes
679
- isLikedByMe
680
- questionId
681
- replies {
682
- id
683
- createdAt
684
- comment
685
- parentId
686
- user {
687
- id
688
- displayName
689
- }
690
- likes
691
- dislikes
692
- isLikedByMe
693
- questionId
694
- }
695
- }
696
- concept {
697
- id
698
- name
699
- status
700
- totalCards
701
- topic {
702
- id
703
- name
704
- typeId
705
- }
706
- chapter {
707
- id
708
- explanation
709
- pictures {
710
- id
711
- createdAt
712
- updatedAt
713
- name
714
- caption
715
- path
716
- path512
717
- path256
718
- thumbhash
719
- index
720
- topicId
721
- }
722
- }
723
- videos {
724
- id
725
- status
726
- title
727
- museId
728
- startTime
729
- endTime
730
- thumbnail
731
- concepts {
732
- id
733
- name
734
- }
735
- live
736
- description
737
- duration
738
- }
739
- }
740
- pictures {
741
- id
742
- createdAt
743
- updatedAt
744
- name
745
- index
746
- caption
747
- path
748
- path512
749
- path256
750
- thumbhash
751
- topicId
752
- }
753
- difficulty
754
- psaSectionId
755
- likes
756
- dislikes
757
- isLikedByMe
758
- emqAnswer: answer
759
- }
760
- ... on QuestionRanking {
761
- conceptId
762
- difficulty
763
- dislikes
764
- explanation
765
- id
766
- isLikedByMe
767
- likes
768
- question
769
- totalVotes
770
- typeId
771
- highlights {
772
- start
773
- end
774
- text
775
- part
776
- tag
777
- color
778
- }
779
- choices {
780
- id
781
- explanation
782
- name
783
- label
784
- answer
785
- votes
786
- picture {
787
- id
788
- createdAt
789
- updatedAt
790
- name
791
- caption
792
- path
793
- path512
794
- path256
795
- thumbhash
796
- }
797
- }
798
- comments {
799
- id
800
- createdAt
801
- comment
802
- parentId
803
- likes
804
- user {
805
- id
806
- displayName
807
- }
808
- dislikes
809
- isLikedByMe
810
- questionId
811
- replies {
812
- id
813
- createdAt
814
- comment
815
- parentId
816
- user {
817
- id
818
- displayName
819
- }
820
- likes
821
- dislikes
822
- isLikedByMe
823
- questionId
824
- }
825
- }
826
- concept {
827
- id
828
- name
829
- status
830
- totalCards
831
- topic {
832
- id
833
- name
834
- typeId
835
- }
836
- chapter {
837
- id
838
- explanation
839
- pictures {
840
- id
841
- createdAt
842
- updatedAt
843
- name
844
- caption
845
- path
846
- path512
847
- path256
848
- thumbhash
849
- index
850
- topicId
851
- }
852
- }
853
- videos {
854
- id
855
- status
856
- title
857
- museId
858
- startTime
859
- endTime
860
- thumbnail
861
- concepts {
862
- id
863
- name
864
- }
865
- live
866
- description
867
- duration
868
- }
869
- }
870
- pictures {
871
- id
872
- createdAt
873
- updatedAt
874
- name
875
- index
876
- caption
877
- path
878
- path512
879
- path256
880
- thumbhash
881
- topicId
882
- }
883
- difficulty
884
- psaSectionId
885
- likes
886
- dislikes
887
- isLikedByMe
888
- rankingAnswer: answer
889
- }
890
- ... on QuestionSelect3 {
891
- conceptId
892
- difficulty
893
- dislikes
894
- explanation
895
- id
896
- isLikedByMe
897
- likes
898
- question
899
- totalVotes
900
- typeId
901
- highlights {
902
- start
903
- end
904
- text
905
- part
906
- tag
907
- color
908
- }
909
- choices {
910
- id
911
- explanation
912
- name
913
- label
914
- answer
915
- votes
916
- picture {
917
- id
918
- createdAt
919
- updatedAt
920
- name
921
- caption
922
- path
923
- path512
924
- path256
925
- thumbhash
926
- }
927
- }
928
- comments {
929
- id
930
- createdAt
931
- comment
932
- parentId
933
- likes
934
- user {
935
- id
936
- displayName
937
- }
938
- dislikes
939
- isLikedByMe
940
- questionId
941
- replies {
942
- id
943
- createdAt
944
- comment
945
- parentId
946
- user {
947
- id
948
- displayName
949
- }
950
- likes
951
- dislikes
952
- isLikedByMe
953
- questionId
954
- }
955
- }
956
- concept {
957
- id
958
- name
959
- status
960
- totalCards
961
- topic {
962
- id
963
- name
964
- typeId
965
- }
966
- chapter {
967
- id
968
- explanation
969
- pictures {
970
- id
971
- createdAt
972
- updatedAt
973
- name
974
- caption
975
- path
976
- path512
977
- path256
978
- thumbhash
979
- index
980
- topicId
981
- }
982
- }
983
- videos {
984
- id
985
- status
986
- title
987
- museId
988
- startTime
989
- endTime
990
- thumbnail
991
- concepts {
992
- id
993
- name
994
- }
995
- live
996
- description
997
- duration
998
- }
999
- }
1000
- pictures {
1001
- id
1002
- createdAt
1003
- updatedAt
1004
- name
1005
- index
1006
- caption
1007
- path
1008
- path512
1009
- path256
1010
- thumbhash
1011
- topicId
1012
- }
1013
- difficulty
1014
- psaSectionId
1015
- likes
1016
- dislikes
1017
- isLikedByMe
1018
- select3Answer: answer
1019
- }
1020
- }
1021
- }
11
+ ...MarksheetFields
1022
12
  }
1023
13
  }
1024
14
  }
@@ -1137,1021 +127,11 @@ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
1137
127
  }
1138
128
  `;
1139
129
  exports.FLAGGED_QUESTIONS_MARKSHEET = (0, client_1.gql) `
130
+ ${marksheet_1.MARKSHEET_FIELDS}
1140
131
  query FlaggedQuestionsMarksheet {
1141
132
  restricted {
1142
133
  flaggedQuestionsMarksheet {
1143
- id
1144
- topicConceptData
1145
- currentMarkId
1146
- completed
1147
- passingMark
1148
- duration
1149
- entitlement {
1150
- id
1151
- name
1152
- }
1153
- topicIds
1154
- topicNames
1155
- mockTestId
1156
- totalQuestions
1157
- solo
1158
- agoraId
1159
- sessionId
1160
- state
1161
- user {
1162
- id
1163
- displayName
1164
- }
1165
- users {
1166
- id
1167
- displayName
1168
- }
1169
- builderConfig {
1170
- difficulty
1171
- isTest
1172
- numberOfQuestions
1173
- secondsPerQuestion
1174
- unseen
1175
- seenCorrect
1176
- seenIncorrect
1177
- }
1178
- preBuildData {
1179
- buildRef
1180
- seenCorrect
1181
- seenIncorrect
1182
- unseen
1183
- }
1184
- createdAt
1185
- startedAt
1186
- endedAt
1187
- isTestMarksheet
1188
- source
1189
- correct
1190
- incorrect
1191
- marks {
1192
- id
1193
- flagged
1194
- striked
1195
- index
1196
- questionChoiceId
1197
- marksheetId
1198
- timeTaken
1199
- isAnswered
1200
- mark
1201
- question {
1202
- ... on QuestionSBA {
1203
- conceptId
1204
- difficulty
1205
- dislikes
1206
- explanation
1207
- id
1208
- isLikedByMe
1209
- likes
1210
- question
1211
- totalVotes
1212
- typeId
1213
- highlights {
1214
- start
1215
- end
1216
- text
1217
- part
1218
- tag
1219
- color
1220
- }
1221
- choices {
1222
- id
1223
- explanation
1224
- name
1225
- label
1226
- answer
1227
- votes
1228
- picture {
1229
- id
1230
- createdAt
1231
- updatedAt
1232
- name
1233
- caption
1234
- path
1235
- path512
1236
- path256
1237
- thumbhash
1238
- }
1239
- }
1240
- comments {
1241
- id
1242
- createdAt
1243
- comment
1244
- parentId
1245
- likes
1246
- user {
1247
- id
1248
- displayName
1249
- }
1250
- dislikes
1251
- isLikedByMe
1252
- questionId
1253
- replies {
1254
- id
1255
- createdAt
1256
- comment
1257
- parentId
1258
- user {
1259
- id
1260
- displayName
1261
- }
1262
- likes
1263
- dislikes
1264
- isLikedByMe
1265
- questionId
1266
- }
1267
- }
1268
- concept {
1269
- id
1270
- name
1271
- status
1272
- totalCards
1273
- topic {
1274
- id
1275
- name
1276
- typeId
1277
- }
1278
- chapter {
1279
- id
1280
- explanation
1281
- pictures {
1282
- id
1283
- createdAt
1284
- updatedAt
1285
- name
1286
- caption
1287
- path
1288
- path512
1289
- path256
1290
- thumbhash
1291
- index
1292
- topicId
1293
- }
1294
- }
1295
- videos {
1296
- id
1297
- status
1298
- title
1299
- museId
1300
- startTime
1301
- endTime
1302
- thumbnail
1303
- concepts {
1304
- id
1305
- name
1306
- }
1307
- live
1308
- description
1309
- duration
1310
- }
1311
- }
1312
- pictures {
1313
- id
1314
- createdAt
1315
- updatedAt
1316
- name
1317
- index
1318
- caption
1319
- path
1320
- path512
1321
- path256
1322
- thumbhash
1323
- topicId
1324
- }
1325
- difficulty
1326
- psaSectionId
1327
- likes
1328
- dislikes
1329
- isLikedByMe
1330
- sbaAnswer: answer
1331
- }
1332
- ... on QuestionQA {
1333
- conceptId
1334
- difficulty
1335
- dislikes
1336
- explanation
1337
- id
1338
- isLikedByMe
1339
- likes
1340
- question
1341
- totalVotes
1342
- typeId
1343
- highlights {
1344
- start
1345
- end
1346
- text
1347
- part
1348
- tag
1349
- color
1350
- }
1351
- choices {
1352
- id
1353
- explanation
1354
- name
1355
- label
1356
- answer
1357
- votes
1358
- picture {
1359
- id
1360
- createdAt
1361
- updatedAt
1362
- name
1363
- caption
1364
- path
1365
- path512
1366
- path256
1367
- thumbhash
1368
- }
1369
- }
1370
- comments {
1371
- id
1372
- createdAt
1373
- comment
1374
- parentId
1375
- likes
1376
- user {
1377
- id
1378
- displayName
1379
- }
1380
- dislikes
1381
- isLikedByMe
1382
- questionId
1383
- replies {
1384
- id
1385
- createdAt
1386
- comment
1387
- parentId
1388
- user {
1389
- id
1390
- displayName
1391
- }
1392
- likes
1393
- dislikes
1394
- isLikedByMe
1395
- questionId
1396
- }
1397
- }
1398
- concept {
1399
- id
1400
- name
1401
- status
1402
- totalCards
1403
- topic {
1404
- id
1405
- name
1406
- typeId
1407
- }
1408
- chapter {
1409
- id
1410
- explanation
1411
- pictures {
1412
- id
1413
- createdAt
1414
- updatedAt
1415
- name
1416
- caption
1417
- path
1418
- path512
1419
- path256
1420
- thumbhash
1421
- index
1422
- topicId
1423
- }
1424
- }
1425
- videos {
1426
- id
1427
- status
1428
- title
1429
- museId
1430
- startTime
1431
- endTime
1432
- thumbnail
1433
- concepts {
1434
- id
1435
- name
1436
- }
1437
- live
1438
- description
1439
- duration
1440
- }
1441
- }
1442
- pictures {
1443
- id
1444
- createdAt
1445
- updatedAt
1446
- name
1447
- index
1448
- caption
1449
- path
1450
- path512
1451
- path256
1452
- thumbhash
1453
- topicId
1454
- }
1455
- difficulty
1456
- psaSectionId
1457
- likes
1458
- dislikes
1459
- isLikedByMe
1460
- qaAnswer: answer {
1461
- dose
1462
- units
1463
- }
1464
- }
1465
- ... on QuestionMultiA {
1466
- conceptId
1467
- difficulty
1468
- dislikes
1469
- explanation
1470
- id
1471
- isLikedByMe
1472
- likes
1473
- question
1474
- totalVotes
1475
- typeId
1476
- highlights {
1477
- start
1478
- end
1479
- text
1480
- part
1481
- tag
1482
- color
1483
- }
1484
- choices {
1485
- id
1486
- explanation
1487
- name
1488
- label
1489
- answer
1490
- votes
1491
- picture {
1492
- id
1493
- createdAt
1494
- updatedAt
1495
- name
1496
- caption
1497
- path
1498
- path512
1499
- path256
1500
- thumbhash
1501
- }
1502
- }
1503
- comments {
1504
- id
1505
- createdAt
1506
- comment
1507
- parentId
1508
- likes
1509
- user {
1510
- id
1511
- displayName
1512
- }
1513
- dislikes
1514
- isLikedByMe
1515
- questionId
1516
- replies {
1517
- id
1518
- createdAt
1519
- comment
1520
- parentId
1521
- user {
1522
- id
1523
- displayName
1524
- }
1525
- likes
1526
- dislikes
1527
- isLikedByMe
1528
- questionId
1529
- }
1530
- }
1531
- concept {
1532
- id
1533
- name
1534
- status
1535
- totalCards
1536
- topic {
1537
- id
1538
- name
1539
- typeId
1540
- }
1541
- chapter {
1542
- id
1543
- explanation
1544
- pictures {
1545
- id
1546
- createdAt
1547
- updatedAt
1548
- name
1549
- caption
1550
- path
1551
- path512
1552
- path256
1553
- thumbhash
1554
- index
1555
- topicId
1556
- }
1557
- }
1558
- videos {
1559
- id
1560
- status
1561
- title
1562
- museId
1563
- startTime
1564
- endTime
1565
- thumbnail
1566
- concepts {
1567
- id
1568
- name
1569
- }
1570
- live
1571
- description
1572
- duration
1573
- }
1574
- }
1575
- pictures {
1576
- id
1577
- createdAt
1578
- updatedAt
1579
- name
1580
- index
1581
- caption
1582
- path
1583
- path512
1584
- path256
1585
- thumbhash
1586
- topicId
1587
- }
1588
- difficulty
1589
- psaSectionId
1590
- likes
1591
- dislikes
1592
- isLikedByMe
1593
- multiAnswer: answer
1594
- }
1595
- ... on QuestionPrescription {
1596
- conceptId
1597
- difficulty
1598
- dislikes
1599
- explanation
1600
- id
1601
- isLikedByMe
1602
- likes
1603
- question
1604
- totalVotes
1605
- typeId
1606
- highlights {
1607
- start
1608
- end
1609
- text
1610
- part
1611
- tag
1612
- color
1613
- }
1614
- choices {
1615
- id
1616
- explanation
1617
- name
1618
- label
1619
- answer
1620
- votes
1621
- picture {
1622
- id
1623
- createdAt
1624
- updatedAt
1625
- name
1626
- caption
1627
- path
1628
- path512
1629
- path256
1630
- thumbhash
1631
- }
1632
- }
1633
- comments {
1634
- id
1635
- createdAt
1636
- comment
1637
- parentId
1638
- likes
1639
- user {
1640
- id
1641
- displayName
1642
- }
1643
- dislikes
1644
- isLikedByMe
1645
- questionId
1646
- replies {
1647
- id
1648
- createdAt
1649
- comment
1650
- parentId
1651
- user {
1652
- id
1653
- displayName
1654
- }
1655
- likes
1656
- dislikes
1657
- isLikedByMe
1658
- questionId
1659
- }
1660
- }
1661
- concept {
1662
- id
1663
- name
1664
- status
1665
- totalCards
1666
- topic {
1667
- id
1668
- name
1669
- typeId
1670
- }
1671
- chapter {
1672
- id
1673
- explanation
1674
- pictures {
1675
- id
1676
- createdAt
1677
- updatedAt
1678
- name
1679
- caption
1680
- path
1681
- path512
1682
- path256
1683
- thumbhash
1684
- index
1685
- topicId
1686
- }
1687
- }
1688
- videos {
1689
- id
1690
- status
1691
- title
1692
- museId
1693
- startTime
1694
- endTime
1695
- thumbnail
1696
- concepts {
1697
- id
1698
- name
1699
- }
1700
- live
1701
- description
1702
- duration
1703
- }
1704
- }
1705
- pictures {
1706
- id
1707
- createdAt
1708
- updatedAt
1709
- name
1710
- index
1711
- caption
1712
- path
1713
- path512
1714
- path256
1715
- thumbhash
1716
- topicId
1717
- }
1718
- difficulty
1719
- psaSectionId
1720
- likes
1721
- dislikes
1722
- isLikedByMe
1723
- prescribeAnswer: answer {
1724
- dose {
1725
- value
1726
- label
1727
- visible
1728
- }
1729
- drug {
1730
- value
1731
- label
1732
- visible
1733
- }
1734
- route {
1735
- value
1736
- label
1737
- visible
1738
- }
1739
- frequency {
1740
- value
1741
- label
1742
- visible
1743
- }
1744
- duration {
1745
- value
1746
- label
1747
- visible
1748
- }
1749
- unit {
1750
- value
1751
- label
1752
- visible
1753
- }
1754
- }
1755
- }
1756
- ... on QuestionEMQ {
1757
- conceptId
1758
- difficulty
1759
- dislikes
1760
- explanation
1761
- id
1762
- isLikedByMe
1763
- likes
1764
- question
1765
- totalVotes
1766
- typeId
1767
- highlights {
1768
- start
1769
- end
1770
- text
1771
- part
1772
- tag
1773
- color
1774
- }
1775
- cases {
1776
- id
1777
- questionId
1778
- case
1779
- explanation
1780
- label
1781
- }
1782
- choices {
1783
- id
1784
- explanation
1785
- name
1786
- label
1787
- answer
1788
- votes
1789
- picture {
1790
- id
1791
- createdAt
1792
- updatedAt
1793
- name
1794
- caption
1795
- path
1796
- path512
1797
- path256
1798
- thumbhash
1799
- }
1800
- }
1801
- comments {
1802
- id
1803
- createdAt
1804
- comment
1805
- parentId
1806
- likes
1807
- user {
1808
- id
1809
- displayName
1810
- }
1811
- dislikes
1812
- isLikedByMe
1813
- questionId
1814
- replies {
1815
- id
1816
- createdAt
1817
- comment
1818
- parentId
1819
- user {
1820
- id
1821
- displayName
1822
- }
1823
- likes
1824
- dislikes
1825
- isLikedByMe
1826
- questionId
1827
- }
1828
- }
1829
- concept {
1830
- id
1831
- name
1832
- status
1833
- totalCards
1834
- topic {
1835
- id
1836
- name
1837
- typeId
1838
- }
1839
- chapter {
1840
- id
1841
- explanation
1842
- pictures {
1843
- id
1844
- createdAt
1845
- updatedAt
1846
- name
1847
- caption
1848
- path
1849
- path512
1850
- path256
1851
- thumbhash
1852
- index
1853
- topicId
1854
- }
1855
- }
1856
- videos {
1857
- id
1858
- status
1859
- title
1860
- museId
1861
- startTime
1862
- endTime
1863
- thumbnail
1864
- concepts {
1865
- id
1866
- name
1867
- }
1868
- live
1869
- description
1870
- duration
1871
- }
1872
- }
1873
- pictures {
1874
- id
1875
- createdAt
1876
- updatedAt
1877
- name
1878
- index
1879
- caption
1880
- path
1881
- path512
1882
- path256
1883
- thumbhash
1884
- topicId
1885
- }
1886
- difficulty
1887
- psaSectionId
1888
- likes
1889
- dislikes
1890
- isLikedByMe
1891
- emqAnswer: answer
1892
- }
1893
- ... on QuestionRanking {
1894
- conceptId
1895
- difficulty
1896
- dislikes
1897
- explanation
1898
- id
1899
- isLikedByMe
1900
- likes
1901
- question
1902
- totalVotes
1903
- typeId
1904
- highlights {
1905
- start
1906
- end
1907
- text
1908
- part
1909
- tag
1910
- color
1911
- }
1912
- choices {
1913
- id
1914
- explanation
1915
- name
1916
- label
1917
- answer
1918
- votes
1919
- picture {
1920
- id
1921
- createdAt
1922
- updatedAt
1923
- name
1924
- caption
1925
- path
1926
- path512
1927
- path256
1928
- thumbhash
1929
- }
1930
- }
1931
- comments {
1932
- id
1933
- createdAt
1934
- comment
1935
- parentId
1936
- likes
1937
- user {
1938
- id
1939
- displayName
1940
- }
1941
- dislikes
1942
- isLikedByMe
1943
- questionId
1944
- replies {
1945
- id
1946
- createdAt
1947
- comment
1948
- parentId
1949
- user {
1950
- id
1951
- displayName
1952
- }
1953
- likes
1954
- dislikes
1955
- isLikedByMe
1956
- questionId
1957
- }
1958
- }
1959
- concept {
1960
- id
1961
- name
1962
- status
1963
- totalCards
1964
- topic {
1965
- id
1966
- name
1967
- typeId
1968
- }
1969
- chapter {
1970
- id
1971
- explanation
1972
- pictures {
1973
- id
1974
- createdAt
1975
- updatedAt
1976
- name
1977
- caption
1978
- path
1979
- path512
1980
- path256
1981
- thumbhash
1982
- index
1983
- topicId
1984
- }
1985
- }
1986
- videos {
1987
- id
1988
- status
1989
- title
1990
- museId
1991
- startTime
1992
- endTime
1993
- thumbnail
1994
- concepts {
1995
- id
1996
- name
1997
- }
1998
- live
1999
- description
2000
- duration
2001
- }
2002
- }
2003
- pictures {
2004
- id
2005
- createdAt
2006
- updatedAt
2007
- name
2008
- index
2009
- caption
2010
- path
2011
- path512
2012
- path256
2013
- thumbhash
2014
- topicId
2015
- }
2016
- difficulty
2017
- psaSectionId
2018
- likes
2019
- dislikes
2020
- isLikedByMe
2021
- rankingAnswer: answer
2022
- }
2023
- ... on QuestionSelect3 {
2024
- conceptId
2025
- difficulty
2026
- dislikes
2027
- explanation
2028
- id
2029
- isLikedByMe
2030
- likes
2031
- question
2032
- totalVotes
2033
- typeId
2034
- highlights {
2035
- start
2036
- end
2037
- text
2038
- part
2039
- tag
2040
- color
2041
- }
2042
- choices {
2043
- id
2044
- explanation
2045
- name
2046
- label
2047
- answer
2048
- votes
2049
- picture {
2050
- id
2051
- createdAt
2052
- updatedAt
2053
- name
2054
- caption
2055
- path
2056
- path512
2057
- path256
2058
- thumbhash
2059
- }
2060
- }
2061
- comments {
2062
- id
2063
- createdAt
2064
- comment
2065
- parentId
2066
- likes
2067
- user {
2068
- id
2069
- displayName
2070
- }
2071
- dislikes
2072
- isLikedByMe
2073
- questionId
2074
- replies {
2075
- id
2076
- createdAt
2077
- comment
2078
- parentId
2079
- user {
2080
- id
2081
- displayName
2082
- }
2083
- likes
2084
- dislikes
2085
- isLikedByMe
2086
- questionId
2087
- }
2088
- }
2089
- concept {
2090
- id
2091
- name
2092
- status
2093
- totalCards
2094
- topic {
2095
- id
2096
- name
2097
- typeId
2098
- }
2099
- chapter {
2100
- id
2101
- explanation
2102
- pictures {
2103
- id
2104
- createdAt
2105
- updatedAt
2106
- name
2107
- caption
2108
- path
2109
- path512
2110
- path256
2111
- thumbhash
2112
- index
2113
- topicId
2114
- }
2115
- }
2116
- videos {
2117
- id
2118
- status
2119
- title
2120
- museId
2121
- startTime
2122
- endTime
2123
- thumbnail
2124
- concepts {
2125
- id
2126
- name
2127
- }
2128
- live
2129
- description
2130
- duration
2131
- }
2132
- }
2133
- pictures {
2134
- id
2135
- createdAt
2136
- updatedAt
2137
- name
2138
- index
2139
- caption
2140
- path
2141
- path512
2142
- path256
2143
- thumbhash
2144
- topicId
2145
- }
2146
- difficulty
2147
- psaSectionId
2148
- likes
2149
- dislikes
2150
- isLikedByMe
2151
- select3Answer: answer
2152
- }
2153
- }
2154
- }
134
+ ...MarksheetFields
2155
135
  }
2156
136
  }
2157
137
  }