@quesmed/types 2.6.29 → 2.6.30

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