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