@quesmed/types-rn 2.0.16 → 2.1.0

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 (83) hide show
  1. package/gql_input_output_types/index.d.ts +2 -2
  2. package/models/Question.d.ts +3 -0
  3. package/models/Type.d.ts +1 -0
  4. package/package.json +3 -3
  5. package/resolvers/apollo.d.ts +1 -3
  6. package/resolvers/fragments/chapter.js +14 -3
  7. package/resolvers/fragments/index.d.ts +2 -0
  8. package/resolvers/fragments/index.js +2 -0
  9. package/resolvers/fragments/marksheet.d.ts +1 -0
  10. package/resolvers/fragments/marksheet.js +109 -0
  11. package/resolvers/fragments/mockTest.d.ts +1 -0
  12. package/resolvers/fragments/mockTest.js +16 -0
  13. package/resolvers/fragments/osce.js +1 -0
  14. package/resolvers/fragments/topic.d.ts +1 -0
  15. package/resolvers/fragments/topic.js +18 -0
  16. package/resolvers/fragments/user.js +3 -3
  17. package/resolvers/mutation/admin/algoliaSync.d.ts +4 -0
  18. package/resolvers/mutation/admin/algoliaSync.js +30 -0
  19. package/resolvers/mutation/admin/token.d.ts +2 -0
  20. package/resolvers/mutation/admin/token.js +16 -0
  21. package/resolvers/mutation/restricted/contactUs.d.ts +1 -0
  22. package/resolvers/mutation/restricted/contactUs.js +13 -0
  23. package/resolvers/mutation/restricted/marksheet.d.ts +5 -0
  24. package/resolvers/mutation/restricted/marksheet.js +92 -0
  25. package/resolvers/mutation/restricted/mockTest.d.ts +3 -0
  26. package/resolvers/mutation/restricted/mockTest.js +29 -0
  27. package/resolvers/mutation/restricted/questionDiscussion.d.ts +5 -1
  28. package/resolvers/mutation/restricted/questionDiscussion.js +152 -0
  29. package/resolvers/mutation/restricted/todo.d.ts +8 -0
  30. package/resolvers/mutation/restricted/todo.js +150 -0
  31. package/resolvers/mutation/restricted/token.d.ts +2 -0
  32. package/resolvers/mutation/restricted/token.js +19 -0
  33. package/resolvers/mutation/restricted/users.d.ts +3 -0
  34. package/resolvers/mutation/restricted/users.js +24 -1
  35. package/resolvers/mutation/restricted/video.d.ts +1 -0
  36. package/resolvers/mutation/restricted/video.js +13 -0
  37. package/resolvers/mutation/stripe.d.ts +2 -0
  38. package/resolvers/mutation/stripe.js +12 -0
  39. package/resolvers/mutation/users.d.ts +4 -0
  40. package/resolvers/mutation/users.js +22 -0
  41. package/resolvers/mutation/validUserToken/user.d.ts +2 -0
  42. package/resolvers/mutation/validUserToken/user.js +16 -0
  43. package/resolvers/query/admin/getUserToken.d.ts +1 -0
  44. package/resolvers/query/admin/getUserToken.js +9 -0
  45. package/resolvers/query/author.d.ts +1 -0
  46. package/resolvers/query/author.js +16 -0
  47. package/resolvers/query/book.d.ts +3 -1
  48. package/resolvers/query/book.js +42 -0
  49. package/resolvers/query/feedback.d.ts +2 -0
  50. package/resolvers/query/feedback.js +12 -0
  51. package/resolvers/query/restricted/global.d.ts +2 -0
  52. package/resolvers/query/restricted/global.js +16 -0
  53. package/resolvers/query/restricted/index.d.ts +1 -0
  54. package/resolvers/query/restricted/index.js +1 -0
  55. package/resolvers/query/restricted/marksheet.d.ts +6 -0
  56. package/resolvers/query/restricted/marksheet.js +996 -0
  57. package/resolvers/query/restricted/mockTests.d.ts +2 -0
  58. package/resolvers/query/restricted/mockTests.js +23 -0
  59. package/resolvers/query/restricted/osce.js +2 -2
  60. package/resolvers/query/restricted/qBank.d.ts +18 -0
  61. package/resolvers/query/restricted/qBank.js +77 -0
  62. package/resolvers/query/restricted/quesBook.d.ts +2 -1
  63. package/resolvers/query/restricted/quesBook.js +39 -1
  64. package/resolvers/query/restricted/replication.d.ts +2 -3
  65. package/resolvers/query/restricted/todos.d.ts +3 -1
  66. package/resolvers/query/restricted/todos.js +63 -0
  67. package/resolvers/query/restricted/topics.d.ts +2 -0
  68. package/resolvers/query/restricted/topics.js +38 -0
  69. package/resolvers/query/restricted/university.d.ts +1 -0
  70. package/resolvers/query/restricted/university.js +23 -0
  71. package/resolvers/query/restricted/user.d.ts +2 -2
  72. package/resolvers/query/restricted/user.js +24 -0
  73. package/resolvers/query/restricted/video.d.ts +5 -3
  74. package/resolvers/query/restricted/video.js +98 -0
  75. package/resolvers/query/sample.js +4 -0
  76. package/resolvers/query/subscription.d.ts +1 -0
  77. package/resolvers/query/subscription.js +18 -0
  78. package/resolvers/query/university.d.ts +1 -0
  79. package/resolvers/query/university.js +10 -0
  80. package/resolvers/query/user.d.ts +2 -0
  81. package/resolvers/query/user.js +12 -0
  82. package/resolvers/query/video.d.ts +4 -1
  83. package/resolvers/query/video.js +99 -0
@@ -1,2 +1,998 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MARKSHEET_FEEDBACK = exports.FLAGGED_QUESTIONS = exports.LATEST_PAST_MARKSHEET_ID = exports.MARKSHEETS = exports.PRE_BUILD_MARKSHEET = exports.MARKSHEET = void 0;
4
+ const client_1 = require("@apollo/client");
5
+ exports.MARKSHEET = (0, client_1.gql) `
6
+ query Marksheet($id: Int!) {
7
+ restricted {
8
+ marksheet(id: $id) {
9
+ id
10
+ createdAt
11
+ endedAt
12
+ isTestMarksheet
13
+ source
14
+ marks {
15
+ id
16
+ flagged
17
+ index
18
+ questionChoiceId
19
+ timeTaken
20
+ mark
21
+ question {
22
+ ... on QuestionSBA {
23
+ conceptId
24
+ difficulty
25
+ dislikes
26
+ explanation
27
+ id
28
+ isLikedByMe
29
+ likes
30
+ question
31
+ totalVotes
32
+ typeId
33
+ choices {
34
+ id
35
+ explanation
36
+ name
37
+ label
38
+ answer
39
+ votes
40
+ }
41
+ comments {
42
+ id
43
+ userId
44
+ createdAt
45
+ comment
46
+ likes
47
+ user {
48
+ id
49
+ displayName
50
+ }
51
+ dislikes
52
+ isLikedByMe
53
+ questionId
54
+ replies {
55
+ id
56
+ userId
57
+ createdAt
58
+ comment
59
+ user {
60
+ id
61
+ displayName
62
+ }
63
+ likes
64
+ dislikes
65
+ isLikedByMe
66
+ questionId
67
+ }
68
+ }
69
+ concept {
70
+ id
71
+ name
72
+ chapter {
73
+ id
74
+ explanation
75
+ }
76
+ videos {
77
+ id
78
+ title
79
+ museId
80
+ startTime
81
+ endTime
82
+ thumbnail
83
+ concepts {
84
+ id
85
+ name
86
+ }
87
+ live
88
+ description
89
+ duration
90
+ }
91
+ }
92
+ pictures {
93
+ id
94
+ createdAt
95
+ updatedAt
96
+ name
97
+ caption
98
+ path
99
+ path512
100
+ path256
101
+ topicId
102
+ topic {
103
+ id
104
+ name
105
+ typeId
106
+ }
107
+ }
108
+ difficulty
109
+ psaSectionId
110
+ likes
111
+ dislikes
112
+ isLikedByMe
113
+ sbaAnswer: answer
114
+ }
115
+ ... on QuestionQA {
116
+ conceptId
117
+ difficulty
118
+ dislikes
119
+ explanation
120
+ id
121
+ isLikedByMe
122
+ likes
123
+ question
124
+ totalVotes
125
+ typeId
126
+ choices {
127
+ id
128
+ explanation
129
+ name
130
+ label
131
+ answer
132
+ votes
133
+ }
134
+ comments {
135
+ id
136
+ userId
137
+ createdAt
138
+ comment
139
+ likes
140
+ user {
141
+ id
142
+ displayName
143
+ }
144
+ dislikes
145
+ isLikedByMe
146
+ questionId
147
+ replies {
148
+ id
149
+ userId
150
+ createdAt
151
+ comment
152
+ user {
153
+ id
154
+ displayName
155
+ }
156
+ likes
157
+ dislikes
158
+ isLikedByMe
159
+ questionId
160
+ }
161
+ }
162
+ concept {
163
+ id
164
+ name
165
+ chapter {
166
+ id
167
+ explanation
168
+ }
169
+ videos {
170
+ id
171
+ title
172
+ museId
173
+ startTime
174
+ endTime
175
+ thumbnail
176
+ concepts {
177
+ id
178
+ name
179
+ }
180
+ live
181
+ description
182
+ duration
183
+ }
184
+ }
185
+ pictures {
186
+ id
187
+ createdAt
188
+ updatedAt
189
+ name
190
+ caption
191
+ path
192
+ path512
193
+ path256
194
+ topicId
195
+ topic {
196
+ id
197
+ name
198
+ typeId
199
+ }
200
+ }
201
+ difficulty
202
+ psaSectionId
203
+ likes
204
+ dislikes
205
+ isLikedByMe
206
+ qaAnswer: answer {
207
+ dose
208
+ units
209
+ }
210
+ }
211
+ ... on QuestionMultiA {
212
+ conceptId
213
+ difficulty
214
+ dislikes
215
+ explanation
216
+ id
217
+ isLikedByMe
218
+ likes
219
+ question
220
+ totalVotes
221
+ typeId
222
+ choices {
223
+ id
224
+ explanation
225
+ name
226
+ label
227
+ answer
228
+ votes
229
+ }
230
+ comments {
231
+ id
232
+ userId
233
+ createdAt
234
+ comment
235
+ likes
236
+ user {
237
+ id
238
+ displayName
239
+ }
240
+ dislikes
241
+ isLikedByMe
242
+ questionId
243
+ replies {
244
+ id
245
+ userId
246
+ createdAt
247
+ comment
248
+ user {
249
+ id
250
+ displayName
251
+ }
252
+ likes
253
+ dislikes
254
+ isLikedByMe
255
+ questionId
256
+ }
257
+ }
258
+ concept {
259
+ id
260
+ name
261
+ chapter {
262
+ id
263
+ explanation
264
+ }
265
+ videos {
266
+ id
267
+ title
268
+ museId
269
+ startTime
270
+ endTime
271
+ thumbnail
272
+ concepts {
273
+ id
274
+ name
275
+ }
276
+ live
277
+ description
278
+ duration
279
+ }
280
+ }
281
+ pictures {
282
+ id
283
+ createdAt
284
+ updatedAt
285
+ name
286
+ caption
287
+ path
288
+ path512
289
+ path256
290
+ topicId
291
+ topic {
292
+ id
293
+ name
294
+ typeId
295
+ }
296
+ }
297
+ difficulty
298
+ psaSectionId
299
+ likes
300
+ dislikes
301
+ isLikedByMe
302
+ multiAnswer: answer
303
+ }
304
+ ... on QuestionPrescription {
305
+ conceptId
306
+ difficulty
307
+ dislikes
308
+ explanation
309
+ id
310
+ isLikedByMe
311
+ likes
312
+ question
313
+ totalVotes
314
+ typeId
315
+ choices {
316
+ id
317
+ explanation
318
+ name
319
+ label
320
+ answer
321
+ votes
322
+ }
323
+ comments {
324
+ id
325
+ userId
326
+ createdAt
327
+ comment
328
+ likes
329
+ user {
330
+ id
331
+ displayName
332
+ }
333
+ dislikes
334
+ isLikedByMe
335
+ questionId
336
+ replies {
337
+ id
338
+ userId
339
+ createdAt
340
+ comment
341
+ user {
342
+ id
343
+ displayName
344
+ }
345
+ likes
346
+ dislikes
347
+ isLikedByMe
348
+ questionId
349
+ }
350
+ }
351
+ concept {
352
+ id
353
+ name
354
+ chapter {
355
+ id
356
+ explanation
357
+ }
358
+ videos {
359
+ id
360
+ title
361
+ museId
362
+ startTime
363
+ endTime
364
+ thumbnail
365
+ concepts {
366
+ id
367
+ name
368
+ }
369
+ live
370
+ description
371
+ duration
372
+ }
373
+ }
374
+ pictures {
375
+ id
376
+ createdAt
377
+ updatedAt
378
+ name
379
+ caption
380
+ path
381
+ path512
382
+ path256
383
+ topicId
384
+ topic {
385
+ id
386
+ name
387
+ typeId
388
+ }
389
+ }
390
+ difficulty
391
+ psaSectionId
392
+ likes
393
+ dislikes
394
+ isLikedByMe
395
+ prescribeAnswer: answer {
396
+ dose {
397
+ value
398
+ display
399
+ }
400
+ drug {
401
+ value
402
+ display
403
+ }
404
+ route {
405
+ value
406
+ display
407
+ }
408
+ frequency {
409
+ display
410
+ value
411
+ }
412
+ duration {
413
+ display
414
+ value
415
+ }
416
+ units {
417
+ display
418
+ value
419
+ }
420
+ }
421
+ }
422
+ }
423
+ }
424
+ }
425
+ }
426
+ }
427
+ `;
428
+ exports.PRE_BUILD_MARKSHEET = (0, client_1.gql) `
429
+ query PreBuildMarksheet(
430
+ $topicIds: [Int!]
431
+ $conceptIds: [Int!]
432
+ $search: String
433
+ $source: String!
434
+ $difficulty: [Int!]
435
+ ) {
436
+ restricted {
437
+ preBuildMarksheet(
438
+ difficulty: $difficulty
439
+ topicIds: $topicIds
440
+ conceptIds: $conceptIds
441
+ search: $search
442
+ source: $source
443
+ ) {
444
+ unseen
445
+ seenCorrect
446
+ seenIncorrect
447
+ buildRef
448
+ }
449
+ }
450
+ }
451
+ `;
452
+ exports.MARKSHEETS = (0, client_1.gql) `
453
+ query Marksheets($filter: MarksheetFilterInput!) {
454
+ restricted {
455
+ marksheets(filter: $filter) {
456
+ id
457
+ topicNames
458
+ correct
459
+ incorrect
460
+ totalQuestions
461
+ isTestMarksheet
462
+ }
463
+ }
464
+ }
465
+ `;
466
+ exports.LATEST_PAST_MARKSHEET_ID = (0, client_1.gql) `
467
+ query LatestPastMarksheetId {
468
+ restricted {
469
+ latestPastMarksheetId
470
+ }
471
+ }
472
+ `;
473
+ exports.FLAGGED_QUESTIONS = (0, client_1.gql) `
474
+ query FlaggedQuestions {
475
+ restricted {
476
+ flaggedQuestions {
477
+ question {
478
+ conceptId
479
+ difficulty
480
+ dislikes
481
+ explanation
482
+ id
483
+ isLikedByMe
484
+ likes
485
+ question
486
+ totalVotes
487
+ typeId
488
+ choices {
489
+ id
490
+ explanation
491
+ name
492
+ label
493
+ answer
494
+ votes
495
+ }
496
+ comments {
497
+ id
498
+ userId
499
+ createdAt
500
+ comment
501
+ likes
502
+ user {
503
+ id
504
+ displayName
505
+ }
506
+ dislikes
507
+ isLikedByMe
508
+ questionId
509
+ replies {
510
+ id
511
+ userId
512
+ createdAt
513
+ comment
514
+ user {
515
+ id
516
+ displayName
517
+ }
518
+ likes
519
+ dislikes
520
+ isLikedByMe
521
+ questionId
522
+ }
523
+ }
524
+ concept {
525
+ id
526
+ name
527
+ chapter {
528
+ id
529
+ explanation
530
+ }
531
+ videos {
532
+ id
533
+ title
534
+ museId
535
+ startTime
536
+ endTime
537
+ thumbnail
538
+ concepts {
539
+ id
540
+ name
541
+ }
542
+ live
543
+ description
544
+ duration
545
+ }
546
+ }
547
+ pictures {
548
+ id
549
+ createdAt
550
+ updatedAt
551
+ name
552
+ caption
553
+ path
554
+ path512
555
+ path256
556
+ topicId
557
+ topic {
558
+ id
559
+ name
560
+ typeId
561
+ }
562
+ }
563
+ }
564
+ mark {
565
+ flagged
566
+ questionChoiceId
567
+ timeTaken
568
+ index
569
+ id
570
+ mark
571
+ question {
572
+ ... on QuestionSBA {
573
+ conceptId
574
+ difficulty
575
+ dislikes
576
+ explanation
577
+ id
578
+ isLikedByMe
579
+ likes
580
+ question
581
+ totalVotes
582
+ typeId
583
+ choices {
584
+ id
585
+ explanation
586
+ name
587
+ label
588
+ answer
589
+ votes
590
+ }
591
+ comments {
592
+ id
593
+ userId
594
+ createdAt
595
+ comment
596
+ likes
597
+ user {
598
+ id
599
+ displayName
600
+ }
601
+ dislikes
602
+ isLikedByMe
603
+ questionId
604
+ replies {
605
+ id
606
+ userId
607
+ createdAt
608
+ comment
609
+ user {
610
+ id
611
+ displayName
612
+ }
613
+ likes
614
+ dislikes
615
+ isLikedByMe
616
+ questionId
617
+ }
618
+ }
619
+ concept {
620
+ id
621
+ name
622
+ chapter {
623
+ id
624
+ explanation
625
+ }
626
+ videos {
627
+ id
628
+ title
629
+ museId
630
+ startTime
631
+ endTime
632
+ thumbnail
633
+ concepts {
634
+ id
635
+ name
636
+ }
637
+ live
638
+ description
639
+ duration
640
+ }
641
+ }
642
+ pictures {
643
+ id
644
+ createdAt
645
+ updatedAt
646
+ name
647
+ caption
648
+ path
649
+ path512
650
+ path256
651
+ topicId
652
+ topic {
653
+ id
654
+ name
655
+ typeId
656
+ }
657
+ }
658
+ difficulty
659
+ psaSectionId
660
+ likes
661
+ dislikes
662
+ isLikedByMe
663
+ sbaAnswer: answer
664
+ }
665
+ ... on QuestionQA {
666
+ conceptId
667
+ difficulty
668
+ dislikes
669
+ explanation
670
+ id
671
+ isLikedByMe
672
+ likes
673
+ question
674
+ totalVotes
675
+ typeId
676
+ choices {
677
+ id
678
+ explanation
679
+ name
680
+ label
681
+ answer
682
+ votes
683
+ }
684
+ comments {
685
+ id
686
+ userId
687
+ createdAt
688
+ comment
689
+ likes
690
+ user {
691
+ id
692
+ displayName
693
+ }
694
+ dislikes
695
+ isLikedByMe
696
+ questionId
697
+ replies {
698
+ id
699
+ userId
700
+ createdAt
701
+ comment
702
+ user {
703
+ id
704
+ displayName
705
+ }
706
+ likes
707
+ dislikes
708
+ isLikedByMe
709
+ questionId
710
+ }
711
+ }
712
+ concept {
713
+ id
714
+ name
715
+ chapter {
716
+ id
717
+ explanation
718
+ }
719
+ videos {
720
+ id
721
+ title
722
+ museId
723
+ startTime
724
+ endTime
725
+ thumbnail
726
+ concepts {
727
+ id
728
+ name
729
+ }
730
+ live
731
+ description
732
+ duration
733
+ }
734
+ }
735
+ pictures {
736
+ id
737
+ createdAt
738
+ updatedAt
739
+ name
740
+ caption
741
+ path
742
+ path512
743
+ path256
744
+ topicId
745
+ topic {
746
+ id
747
+ name
748
+ typeId
749
+ }
750
+ }
751
+ difficulty
752
+ psaSectionId
753
+ likes
754
+ dislikes
755
+ isLikedByMe
756
+ qaAnswer: answer {
757
+ dose
758
+ units
759
+ }
760
+ }
761
+ ... on QuestionMultiA {
762
+ conceptId
763
+ difficulty
764
+ dislikes
765
+ explanation
766
+ id
767
+ isLikedByMe
768
+ likes
769
+ question
770
+ totalVotes
771
+ typeId
772
+ choices {
773
+ id
774
+ explanation
775
+ name
776
+ label
777
+ answer
778
+ votes
779
+ }
780
+ comments {
781
+ id
782
+ userId
783
+ createdAt
784
+ comment
785
+ likes
786
+ user {
787
+ id
788
+ displayName
789
+ }
790
+ dislikes
791
+ isLikedByMe
792
+ questionId
793
+ replies {
794
+ id
795
+ userId
796
+ createdAt
797
+ comment
798
+ user {
799
+ id
800
+ displayName
801
+ }
802
+ likes
803
+ dislikes
804
+ isLikedByMe
805
+ questionId
806
+ }
807
+ }
808
+ concept {
809
+ id
810
+ name
811
+ chapter {
812
+ id
813
+ explanation
814
+ }
815
+ videos {
816
+ id
817
+ title
818
+ museId
819
+ startTime
820
+ endTime
821
+ thumbnail
822
+ concepts {
823
+ id
824
+ name
825
+ }
826
+ live
827
+ description
828
+ duration
829
+ }
830
+ }
831
+ pictures {
832
+ id
833
+ createdAt
834
+ updatedAt
835
+ name
836
+ caption
837
+ path
838
+ path512
839
+ path256
840
+ topicId
841
+ topic {
842
+ id
843
+ name
844
+ typeId
845
+ }
846
+ }
847
+ difficulty
848
+ psaSectionId
849
+ likes
850
+ dislikes
851
+ isLikedByMe
852
+ multiAnswer: answer
853
+ }
854
+ ... on QuestionPrescription {
855
+ conceptId
856
+ difficulty
857
+ dislikes
858
+ explanation
859
+ id
860
+ isLikedByMe
861
+ likes
862
+ question
863
+ totalVotes
864
+ typeId
865
+ choices {
866
+ id
867
+ explanation
868
+ name
869
+ label
870
+ answer
871
+ votes
872
+ }
873
+ comments {
874
+ id
875
+ userId
876
+ createdAt
877
+ comment
878
+ likes
879
+ user {
880
+ id
881
+ displayName
882
+ }
883
+ dislikes
884
+ isLikedByMe
885
+ questionId
886
+ replies {
887
+ id
888
+ userId
889
+ createdAt
890
+ comment
891
+ user {
892
+ id
893
+ displayName
894
+ }
895
+ likes
896
+ dislikes
897
+ isLikedByMe
898
+ questionId
899
+ }
900
+ }
901
+ concept {
902
+ id
903
+ name
904
+ chapter {
905
+ id
906
+ explanation
907
+ }
908
+ videos {
909
+ id
910
+ title
911
+ museId
912
+ startTime
913
+ endTime
914
+ thumbnail
915
+ concepts {
916
+ id
917
+ name
918
+ }
919
+ live
920
+ description
921
+ duration
922
+ }
923
+ }
924
+ pictures {
925
+ id
926
+ createdAt
927
+ updatedAt
928
+ name
929
+ caption
930
+ path
931
+ path512
932
+ path256
933
+ topicId
934
+ topic {
935
+ id
936
+ name
937
+ typeId
938
+ }
939
+ }
940
+ difficulty
941
+ psaSectionId
942
+ likes
943
+ dislikes
944
+ isLikedByMe
945
+ prescribeAnswer: answer {
946
+ dose {
947
+ value
948
+ display
949
+ }
950
+ drug {
951
+ value
952
+ display
953
+ }
954
+ route {
955
+ value
956
+ display
957
+ }
958
+ frequency {
959
+ display
960
+ value
961
+ }
962
+ duration {
963
+ display
964
+ value
965
+ }
966
+ units {
967
+ display
968
+ value
969
+ }
970
+ }
971
+ }
972
+ }
973
+ }
974
+ }
975
+ }
976
+ }
977
+ `;
978
+ exports.MARKSHEET_FEEDBACK = (0, client_1.gql) `
979
+ query MarksheetFeedback($id: Int!) {
980
+ restricted {
981
+ marksheetFeedback(id: $id) {
982
+ marksheetId
983
+ mockTestId
984
+ correct
985
+ incorrect
986
+ total
987
+ topics {
988
+ topicId
989
+ avgScore
990
+ name
991
+ score
992
+ }
993
+ timeTaken
994
+ passingMark
995
+ }
996
+ }
997
+ }
998
+ `;