@quesmed/types-rn 2.6.30 → 2.6.32
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.
- package/package.json +1 -1
- package/resolvers/fragments/index.d.ts +1 -0
- package/resolvers/fragments/index.js +1 -0
- package/resolvers/fragments/mockTest.d.ts +6 -0
- package/resolvers/fragments/mockTest.js +27 -1
- package/resolvers/fragments/osce.d.ts +2 -0
- package/resolvers/fragments/osce.js +18 -1
- package/resolvers/mutation/restricted/mockTest.d.ts +3 -4
- package/resolvers/mutation/restricted/mockTest.js +22 -13
- package/resolvers/mutation/restricted/osce.d.ts +46 -2
- package/resolvers/mutation/restricted/osce.js +49 -1
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./blog"), exports);
|
|
18
18
|
__exportStar(require("./chapter"), exports);
|
|
19
19
|
__exportStar(require("./concept"), exports);
|
|
20
|
+
__exportStar(require("./marksheet"), exports);
|
|
20
21
|
__exportStar(require("./mockTest"), exports);
|
|
21
22
|
__exportStar(require("./osce"), exports);
|
|
22
23
|
__exportStar(require("./picture"), exports);
|
|
@@ -1 +1,7 @@
|
|
|
1
1
|
export declare const MOCK_TEST_FIELDS: import("@apollo/client").DocumentNode;
|
|
2
|
+
/**
|
|
3
|
+
* All below fragments are used in cache updator
|
|
4
|
+
*/
|
|
5
|
+
export declare const MARK_FLAGGED_QUESTION: import("@apollo/client").DocumentNode;
|
|
6
|
+
export declare const COMPLETED_MOCK_TEST_MARKSHEET_FRAGMENT: import("@apollo/client").DocumentNode;
|
|
7
|
+
export declare const COMPLETED_MOCK_TESTS_FRAGMENT: import("@apollo/client").DocumentNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MOCK_TEST_FIELDS = void 0;
|
|
3
|
+
exports.COMPLETED_MOCK_TESTS_FRAGMENT = exports.COMPLETED_MOCK_TEST_MARKSHEET_FRAGMENT = exports.MARK_FLAGGED_QUESTION = exports.MOCK_TEST_FIELDS = void 0;
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
5
|
exports.MOCK_TEST_FIELDS = (0, client_1.gql) `
|
|
6
6
|
fragment MockTestFields on MockTest {
|
|
@@ -17,3 +17,29 @@ exports.MOCK_TEST_FIELDS = (0, client_1.gql) `
|
|
|
17
17
|
typeId
|
|
18
18
|
}
|
|
19
19
|
`;
|
|
20
|
+
/**
|
|
21
|
+
* All below fragments are used in cache updator
|
|
22
|
+
*/
|
|
23
|
+
exports.MARK_FLAGGED_QUESTION = (0, client_1.gql) `
|
|
24
|
+
fragment MarksheetMarkFlagged on MarksheetMark {
|
|
25
|
+
flagged
|
|
26
|
+
}
|
|
27
|
+
`;
|
|
28
|
+
exports.COMPLETED_MOCK_TEST_MARKSHEET_FRAGMENT = (0, client_1.gql) `
|
|
29
|
+
fragment MockTestCompleted on Marksheet {
|
|
30
|
+
completed
|
|
31
|
+
correct
|
|
32
|
+
incorrect
|
|
33
|
+
duration
|
|
34
|
+
endedAt
|
|
35
|
+
}
|
|
36
|
+
`;
|
|
37
|
+
exports.COMPLETED_MOCK_TESTS_FRAGMENT = (0, client_1.gql) `
|
|
38
|
+
fragment CompletedMockTestFragment on MockTest {
|
|
39
|
+
correct
|
|
40
|
+
incorrect
|
|
41
|
+
lastMarksheetEndedAt
|
|
42
|
+
lastMarksheetStartedAt
|
|
43
|
+
lastMarksheetId
|
|
44
|
+
}
|
|
45
|
+
`;
|
|
@@ -4,3 +4,5 @@ export declare const OSCE_MARKSHEET_MARK_FIELDS: import("@apollo/client").Docume
|
|
|
4
4
|
export declare const OSCE_MARKSHEET_FIELDS: import("@apollo/client").DocumentNode;
|
|
5
5
|
export declare const OSCE_MATCHMAKING_ACTION_FIELDS: import("@apollo/client").DocumentNode;
|
|
6
6
|
export declare const STATION_CONCEPT_FRAGMENT: import("@apollo/client").DocumentNode;
|
|
7
|
+
export declare const COMPLETED_OSCE_MARKSHEET_FRAGMENT: import("@apollo/client").DocumentNode;
|
|
8
|
+
export declare const COMPLETED_OSCE_STATION_FRAGMENT: import("@apollo/client").DocumentNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.STATION_CONCEPT_FRAGMENT = exports.OSCE_MATCHMAKING_ACTION_FIELDS = exports.OSCE_MARKSHEET_FIELDS = exports.OSCE_MARKSHEET_MARK_FIELDS = exports.OSCE_STATION_FIELDS = exports.OSCE_STATION_MARK_FIELDS = void 0;
|
|
3
|
+
exports.COMPLETED_OSCE_STATION_FRAGMENT = exports.COMPLETED_OSCE_MARKSHEET_FRAGMENT = exports.STATION_CONCEPT_FRAGMENT = exports.OSCE_MATCHMAKING_ACTION_FIELDS = exports.OSCE_MARKSHEET_FIELDS = exports.OSCE_MARKSHEET_MARK_FIELDS = exports.OSCE_STATION_FIELDS = exports.OSCE_STATION_MARK_FIELDS = void 0;
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
5
|
const picture_1 = require("./picture");
|
|
6
6
|
exports.OSCE_STATION_MARK_FIELDS = (0, client_1.gql) `
|
|
@@ -164,3 +164,20 @@ exports.STATION_CONCEPT_FRAGMENT = (0, client_1.gql) `
|
|
|
164
164
|
status
|
|
165
165
|
}
|
|
166
166
|
`;
|
|
167
|
+
exports.COMPLETED_OSCE_MARKSHEET_FRAGMENT = (0, client_1.gql) `
|
|
168
|
+
fragment CompletedOsceMarksheetFragment on OsceMarksheet {
|
|
169
|
+
completed
|
|
170
|
+
score
|
|
171
|
+
globalScore
|
|
172
|
+
state
|
|
173
|
+
timeTaken
|
|
174
|
+
endedAt
|
|
175
|
+
}
|
|
176
|
+
`;
|
|
177
|
+
exports.COMPLETED_OSCE_STATION_FRAGMENT = (0, client_1.gql) `
|
|
178
|
+
fragment CompletedOsceStationFragment on OsceStation {
|
|
179
|
+
score
|
|
180
|
+
completedMarks
|
|
181
|
+
lastOsceMarksheetId
|
|
182
|
+
}
|
|
183
|
+
`;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApolloCache } from '@apollo/client';
|
|
2
2
|
import { ApolloUpdateOptions, ApolloUpdateResultRestricted } from '../..';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { IMarksheet, IMarksheetMark, Id } from '../../../models';
|
|
4
|
+
import { RestrictedData, graphqlNormalize } from '../../types';
|
|
5
5
|
export declare const BUILD_MOCK_TEST_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
6
6
|
export interface IBuildMockTestMarksheetVar {
|
|
7
7
|
mockTestId: Id;
|
|
@@ -9,7 +9,6 @@ export interface IBuildMockTestMarksheetVar {
|
|
|
9
9
|
}
|
|
10
10
|
export type IBuildMockTestMarksheetData = RestrictedData<graphqlNormalize & IMarksheet, 'buildMockTestMarksheet'>;
|
|
11
11
|
export declare const TOGGLE_FLAGGED_MARK: import("@apollo/client").DocumentNode;
|
|
12
|
-
export declare const MARK_FLAGGED_QUESTION: import("@apollo/client").DocumentNode;
|
|
13
12
|
export declare const updateCacheToggleFlaggedQuestion: (cache: ApolloCache<any>, result: ApolloUpdateResultRestricted<IToggleFlaggedMarkData>) => void;
|
|
14
13
|
export declare const optimisticToggleFlaggedQuestion: (mark: IMarksheetMark, flagged: boolean) => {
|
|
15
14
|
restricted: {
|
|
@@ -40,7 +39,7 @@ export interface IToggleFlaggedMarkVar {
|
|
|
40
39
|
}
|
|
41
40
|
export type IToggleFlaggedMarkData = RestrictedData<graphqlNormalize & IMarksheetMark, 'toggleFlaggedMark'>;
|
|
42
41
|
export declare const END_MOCK_TEST: import("@apollo/client").DocumentNode;
|
|
43
|
-
export declare const updateCacheOnEndMockTest: (cache: ApolloCache<any>, result: ApolloUpdateResultRestricted<IEndMockTestData>, options: ApolloUpdateOptions) => void;
|
|
42
|
+
export declare const updateCacheOnEndMockTest: (cache: ApolloCache<any>, result: ApolloUpdateResultRestricted<IEndMockTestData>, options: ApolloUpdateOptions<IEndMockTestVar>) => void;
|
|
44
43
|
export declare const optimisticEndMockTest: (marksheet: IMarksheet) => {
|
|
45
44
|
restricted: {
|
|
46
45
|
__typename: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.optimisticEndMockTest = exports.updateCacheOnEndMockTest = exports.END_MOCK_TEST = exports.optimisticToggleFlaggedQuestion = exports.updateCacheToggleFlaggedQuestion = exports.
|
|
3
|
+
exports.optimisticEndMockTest = exports.updateCacheOnEndMockTest = exports.END_MOCK_TEST = exports.optimisticToggleFlaggedQuestion = exports.updateCacheToggleFlaggedQuestion = exports.TOGGLE_FLAGGED_MARK = exports.BUILD_MOCK_TEST_MARKSHEET = void 0;
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
|
+
const fragments_1 = require("../../fragments");
|
|
5
6
|
exports.BUILD_MOCK_TEST_MARKSHEET = (0, client_1.gql) `
|
|
6
7
|
mutation BuildMockTestMarksheet($mockTestId: Int!, $duration: Int!) {
|
|
7
8
|
restricted {
|
|
@@ -29,11 +30,6 @@ exports.TOGGLE_FLAGGED_MARK = (0, client_1.gql) `
|
|
|
29
30
|
}
|
|
30
31
|
}
|
|
31
32
|
`;
|
|
32
|
-
exports.MARK_FLAGGED_QUESTION = (0, client_1.gql) `
|
|
33
|
-
fragment MarksheetMarkFlagged on MarksheetMark {
|
|
34
|
-
flagged
|
|
35
|
-
}
|
|
36
|
-
`;
|
|
37
33
|
const updateCacheToggleFlaggedQuestion = (cache, result) => {
|
|
38
34
|
const { toggleFlaggedMark } = result?.data?.restricted || {};
|
|
39
35
|
if (!toggleFlaggedMark) {
|
|
@@ -45,7 +41,7 @@ const updateCacheToggleFlaggedQuestion = (cache, result) => {
|
|
|
45
41
|
data: {
|
|
46
42
|
flagged,
|
|
47
43
|
},
|
|
48
|
-
fragment:
|
|
44
|
+
fragment: fragments_1.MARK_FLAGGED_QUESTION,
|
|
49
45
|
});
|
|
50
46
|
};
|
|
51
47
|
exports.updateCacheToggleFlaggedQuestion = updateCacheToggleFlaggedQuestion;
|
|
@@ -64,6 +60,9 @@ exports.END_MOCK_TEST = (0, client_1.gql) `
|
|
|
64
60
|
restricted {
|
|
65
61
|
endMockTest(marksheetId: $marksheetId) {
|
|
66
62
|
id
|
|
63
|
+
startedAt
|
|
64
|
+
endedAt
|
|
65
|
+
mockTestId
|
|
67
66
|
completed
|
|
68
67
|
correct
|
|
69
68
|
incorrect
|
|
@@ -73,11 +72,6 @@ exports.END_MOCK_TEST = (0, client_1.gql) `
|
|
|
73
72
|
}
|
|
74
73
|
}
|
|
75
74
|
`;
|
|
76
|
-
const COMPLETED_MOCK_TEST_FRAGMENT = (0, client_1.gql) `
|
|
77
|
-
fragment MockTestCompleted on Marksheet {
|
|
78
|
-
completed
|
|
79
|
-
}
|
|
80
|
-
`;
|
|
81
75
|
const updateCacheOnEndMockTest = (cache, result, options) => {
|
|
82
76
|
const { endMockTest } = result?.data?.restricted || {};
|
|
83
77
|
const { variables } = options || {};
|
|
@@ -89,8 +83,23 @@ const updateCacheOnEndMockTest = (cache, result, options) => {
|
|
|
89
83
|
id: cache.identify({ id, __typename: 'Marksheet' }),
|
|
90
84
|
data: {
|
|
91
85
|
completed: true,
|
|
86
|
+
correct: endMockTest.correct,
|
|
87
|
+
incorrect: endMockTest.incorrect,
|
|
88
|
+
duration: endMockTest.duration,
|
|
89
|
+
endedAt: endMockTest.endedAt,
|
|
90
|
+
},
|
|
91
|
+
fragment: fragments_1.COMPLETED_MOCK_TEST_MARKSHEET_FRAGMENT,
|
|
92
|
+
});
|
|
93
|
+
cache.writeFragment({
|
|
94
|
+
id: cache.identify({ id: endMockTest.mockTestId, __typename: 'MockTest' }),
|
|
95
|
+
data: {
|
|
96
|
+
lastMarksheetId: endMockTest.id,
|
|
97
|
+
lastMarksheetStartedAt: endMockTest.startedAt,
|
|
98
|
+
lastMarksheetEndedAt: endMockTest.endedAt,
|
|
99
|
+
correct: endMockTest.correct,
|
|
100
|
+
incorrect: endMockTest.incorrect,
|
|
92
101
|
},
|
|
93
|
-
fragment:
|
|
102
|
+
fragment: fragments_1.COMPLETED_MOCK_TESTS_FRAGMENT,
|
|
94
103
|
});
|
|
95
104
|
};
|
|
96
105
|
exports.updateCacheOnEndMockTest = updateCacheOnEndMockTest;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApolloCache } from '@apollo/client';
|
|
2
|
+
import { EOsceMarksheetAction, EOsceMarksheetState, EOsceRoles, EPaceMarkType, EProductType, EStudyAction, IOsceMarksheet, IOsceMarksheetMark, Id } from '../../../models';
|
|
3
|
+
import { ApolloUpdateOptions, ApolloUpdateResultRestricted } from '../../apollo';
|
|
2
4
|
import { IOsceMatchmakingAction } from '../../subscription/osce';
|
|
3
|
-
import {
|
|
5
|
+
import { RestrictedData, graphqlNormalize } from '../../types';
|
|
4
6
|
export declare const START_OSCE_MATCHMAKING: import("@apollo/client").DocumentNode;
|
|
5
7
|
export interface IStartOsceMatchmakingVar {
|
|
6
8
|
sessionId: string;
|
|
@@ -89,6 +91,48 @@ export declare const END_OSCE_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
|
89
91
|
export interface IEndOsceMarksheetVar extends ISaveOsceMarksheetVar {
|
|
90
92
|
}
|
|
91
93
|
export type IEndOsceMarksheetData = RestrictedData<graphqlNormalize & IOsceMarksheet, 'endOsceMarksheet'>;
|
|
94
|
+
export declare const updateCacheOnEndOsceMarksheet: (productType: EProductType) => (cache: ApolloCache<any>, result: ApolloUpdateResultRestricted<IEndOsceMarksheetData>, options: ApolloUpdateOptions<IEndOsceMarksheetVar>) => void;
|
|
95
|
+
export declare const optimisticEndOsceMarksheet: (marksheet: IOsceMarksheet) => {
|
|
96
|
+
restricted: {
|
|
97
|
+
__typename: string;
|
|
98
|
+
endOsceMarksheet: {
|
|
99
|
+
completed: boolean;
|
|
100
|
+
id: number;
|
|
101
|
+
createdAt: number | Date;
|
|
102
|
+
updatedAt: number | Date;
|
|
103
|
+
deletedAt: number | Date;
|
|
104
|
+
timeTaken: number;
|
|
105
|
+
osceStationId: number;
|
|
106
|
+
osceStation?: import("../../../models").IOsceStation | undefined;
|
|
107
|
+
role?: EOsceRoles | undefined;
|
|
108
|
+
solo: boolean;
|
|
109
|
+
score: number;
|
|
110
|
+
total: number;
|
|
111
|
+
correct: number;
|
|
112
|
+
globalScore: number;
|
|
113
|
+
feedback: string;
|
|
114
|
+
agoraId: string;
|
|
115
|
+
sessionId: string;
|
|
116
|
+
readingTime: number;
|
|
117
|
+
stationTime: number;
|
|
118
|
+
feedbackTime: number;
|
|
119
|
+
startedAt: number | Date;
|
|
120
|
+
endedAt: number | Date;
|
|
121
|
+
pausedAt: number | Date;
|
|
122
|
+
timeRemaining: string;
|
|
123
|
+
totalStationTime: string;
|
|
124
|
+
stageTime: string;
|
|
125
|
+
stage: import("../../../models").EOsceStage;
|
|
126
|
+
marks: IOsceMarksheetMark[];
|
|
127
|
+
users: import("../../../models").IUser[];
|
|
128
|
+
activeUsers?: import("../../../models").IUser[] | undefined;
|
|
129
|
+
members: import("../../../models").IOsceMarksheetMember[];
|
|
130
|
+
state: EOsceMarksheetState;
|
|
131
|
+
productId: EProductType;
|
|
132
|
+
__typename: string;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
92
136
|
export declare const LEAVE_OSCE_MARKSHEET: import("@apollo/client").DocumentNode;
|
|
93
137
|
export interface ILeaveOsceMarksheetVar {
|
|
94
138
|
osceMarksheetId: Id;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LEAVE_OSCE_MARKSHEET = exports.END_OSCE_MARKSHEET = exports.MODIFY_OSCE_MARKSHEET = exports.SAVE_OSCE_MARKSHEET = exports.PRESTART_OSCE_MARKSHEET = exports.START_OSCE_TIMER = exports.START_OSCE_MARKSHEET = exports.SELECT_OSCE_STATION = exports.optimisticMarkOsceMarksheetMark = exports.MARK_OSCE_MARKSHEET_MARK = exports.CHANGE_OSCE_ROLE = exports.BUILD_OSCE_MARKSHEET = exports.CREATE_OR_JOIN_OSCE_MARKSHEET = exports.CANCEL_OSCE_MATCHMAKING = exports.CHECK_OSCE_MATCHMAKING = exports.ACCEPT_OSCE_MATCHMAKING = exports.START_OSCE_MATCHMAKING = void 0;
|
|
3
|
+
exports.LEAVE_OSCE_MARKSHEET = exports.optimisticEndOsceMarksheet = exports.updateCacheOnEndOsceMarksheet = exports.END_OSCE_MARKSHEET = exports.MODIFY_OSCE_MARKSHEET = exports.SAVE_OSCE_MARKSHEET = exports.PRESTART_OSCE_MARKSHEET = exports.START_OSCE_TIMER = exports.START_OSCE_MARKSHEET = exports.SELECT_OSCE_STATION = exports.optimisticMarkOsceMarksheetMark = exports.MARK_OSCE_MARKSHEET_MARK = exports.CHANGE_OSCE_ROLE = exports.BUILD_OSCE_MARKSHEET = exports.CREATE_OR_JOIN_OSCE_MARKSHEET = exports.CANCEL_OSCE_MATCHMAKING = exports.CHECK_OSCE_MATCHMAKING = exports.ACCEPT_OSCE_MATCHMAKING = exports.START_OSCE_MATCHMAKING = void 0;
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
5
|
const models_1 = require("../../../models");
|
|
6
6
|
const osce_1 = require("../../fragments/osce");
|
|
@@ -235,6 +235,54 @@ exports.END_OSCE_MARKSHEET = (0, client_1.gql) `
|
|
|
235
235
|
}
|
|
236
236
|
}
|
|
237
237
|
`;
|
|
238
|
+
const updateCacheOnEndOsceMarksheet = (productType) => (cache, result, options) => {
|
|
239
|
+
const { endOsceMarksheet } = result?.data?.restricted || {};
|
|
240
|
+
const { variables } = options || {};
|
|
241
|
+
if (!variables || !endOsceMarksheet) {
|
|
242
|
+
return;
|
|
243
|
+
}
|
|
244
|
+
cache.writeFragment({
|
|
245
|
+
id: cache.identify({
|
|
246
|
+
id: endOsceMarksheet.id,
|
|
247
|
+
__typename: 'OsceMarksheet',
|
|
248
|
+
}),
|
|
249
|
+
data: {
|
|
250
|
+
completed: true,
|
|
251
|
+
score: endOsceMarksheet.score,
|
|
252
|
+
state: endOsceMarksheet.state,
|
|
253
|
+
globalScore: endOsceMarksheet.globalScore,
|
|
254
|
+
timeTaken: endOsceMarksheet.timeTaken,
|
|
255
|
+
endedAt: endOsceMarksheet.endedAt,
|
|
256
|
+
},
|
|
257
|
+
fragment: osce_1.COMPLETED_OSCE_MARKSHEET_FRAGMENT,
|
|
258
|
+
});
|
|
259
|
+
cache.writeFragment({
|
|
260
|
+
id: cache.identify({
|
|
261
|
+
id: endOsceMarksheet.osceStationId,
|
|
262
|
+
__typename: 'OsceStation',
|
|
263
|
+
}),
|
|
264
|
+
data: {
|
|
265
|
+
completedMarks: endOsceMarksheet.marks.filter((m) => productType === models_1.EProductType.OSCE
|
|
266
|
+
? m.mark !== null
|
|
267
|
+
: m.selectedChoice !== null).length,
|
|
268
|
+
score: endOsceMarksheet.score,
|
|
269
|
+
lastOsceMarksheetId: endOsceMarksheet.id,
|
|
270
|
+
},
|
|
271
|
+
fragment: osce_1.COMPLETED_OSCE_STATION_FRAGMENT,
|
|
272
|
+
});
|
|
273
|
+
};
|
|
274
|
+
exports.updateCacheOnEndOsceMarksheet = updateCacheOnEndOsceMarksheet;
|
|
275
|
+
const optimisticEndOsceMarksheet = (marksheet) => ({
|
|
276
|
+
restricted: {
|
|
277
|
+
__typename: 'RestrictedMutation',
|
|
278
|
+
endOsceMarksheet: {
|
|
279
|
+
__typename: 'OsceMarksheet',
|
|
280
|
+
...marksheet,
|
|
281
|
+
completed: true,
|
|
282
|
+
},
|
|
283
|
+
},
|
|
284
|
+
});
|
|
285
|
+
exports.optimisticEndOsceMarksheet = optimisticEndOsceMarksheet;
|
|
238
286
|
exports.LEAVE_OSCE_MARKSHEET = (0, client_1.gql) `
|
|
239
287
|
${osce_1.OSCE_MARKSHEET_FIELDS}
|
|
240
288
|
mutation LeaveOsceMarksheet($osceMarksheetId: Int!) {
|