@quesmed/types 2.2.23 → 2.2.27
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/dist/cjs/resolvers/query/restricted/marksheet.d.ts +3 -3
- package/dist/cjs/resolvers/query/restricted/marksheet.js +11 -8
- package/dist/cjs/resolvers/query/restricted/qBank.js +9 -6
- package/dist/mjs/resolvers/query/restricted/marksheet.d.ts +3 -3
- package/dist/mjs/resolvers/query/restricted/marksheet.js +11 -8
- package/dist/mjs/resolvers/query/restricted/qBank.js +9 -6
- package/package.json +1 -1
|
@@ -23,10 +23,10 @@ export declare type ILatestPastMarksheetIdVar = null;
|
|
|
23
23
|
export declare type ILatestPastMarksheetIdData = RestrictedData<number, 'latestPastMarksheetId'>;
|
|
24
24
|
export declare const LATEST_PAST_MARKSHEET_ID: import("@apollo/client").DocumentNode;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* latestAgoraId
|
|
27
27
|
*/
|
|
28
|
-
export declare type
|
|
29
|
-
export declare type
|
|
28
|
+
export declare type IlatestAgoraIdVar = null;
|
|
29
|
+
export declare type IlatestAgoraIdData = RestrictedData<string, 'latestAgoraId'>;
|
|
30
30
|
export declare const LATEST_PAST_AGORA_ID: import("@apollo/client").DocumentNode;
|
|
31
31
|
export declare type IFlaggedQuestionsVar = null;
|
|
32
32
|
export declare type IFlaggedQuestionsData = RestrictedData<(graphqlNormalize & IUserFlaggedQuestion)[], 'flaggedQuestions'>;
|
|
@@ -553,12 +553,15 @@ exports.MARKSHEETS = (0, client_1.gql) `
|
|
|
553
553
|
query Marksheets($filter: MarksheetFilterInput!) {
|
|
554
554
|
restricted {
|
|
555
555
|
marksheets(filter: $filter) {
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
556
|
+
results {
|
|
557
|
+
id
|
|
558
|
+
topicNames
|
|
559
|
+
correct
|
|
560
|
+
incorrect
|
|
561
|
+
totalQuestions
|
|
562
|
+
isTestMarksheet
|
|
563
|
+
}
|
|
564
|
+
total
|
|
562
565
|
}
|
|
563
566
|
}
|
|
564
567
|
}
|
|
@@ -571,9 +574,9 @@ exports.LATEST_PAST_MARKSHEET_ID = (0, client_1.gql) `
|
|
|
571
574
|
}
|
|
572
575
|
`;
|
|
573
576
|
exports.LATEST_PAST_AGORA_ID = (0, client_1.gql) `
|
|
574
|
-
query
|
|
577
|
+
query latestAgoraId {
|
|
575
578
|
restricted {
|
|
576
|
-
|
|
579
|
+
latestAgoraId
|
|
577
580
|
}
|
|
578
581
|
}
|
|
579
582
|
`;
|
|
@@ -44,12 +44,15 @@ exports.DASHBOARD_QBANK = (0, client_1.gql) `
|
|
|
44
44
|
totalQuestions
|
|
45
45
|
totalCards
|
|
46
46
|
marksheets(filter: $filter) {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
results {
|
|
48
|
+
id
|
|
49
|
+
topicNames
|
|
50
|
+
correct
|
|
51
|
+
incorrect
|
|
52
|
+
totalQuestions
|
|
53
|
+
isTestMarksheet
|
|
54
|
+
}
|
|
55
|
+
total
|
|
53
56
|
}
|
|
54
57
|
topics(filter: 0) {
|
|
55
58
|
id
|
|
@@ -23,10 +23,10 @@ export declare type ILatestPastMarksheetIdVar = null;
|
|
|
23
23
|
export declare type ILatestPastMarksheetIdData = RestrictedData<number, 'latestPastMarksheetId'>;
|
|
24
24
|
export declare const LATEST_PAST_MARKSHEET_ID: import("@apollo/client").DocumentNode;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* latestAgoraId
|
|
27
27
|
*/
|
|
28
|
-
export declare type
|
|
29
|
-
export declare type
|
|
28
|
+
export declare type IlatestAgoraIdVar = null;
|
|
29
|
+
export declare type IlatestAgoraIdData = RestrictedData<string, 'latestAgoraId'>;
|
|
30
30
|
export declare const LATEST_PAST_AGORA_ID: import("@apollo/client").DocumentNode;
|
|
31
31
|
export declare type IFlaggedQuestionsVar = null;
|
|
32
32
|
export declare type IFlaggedQuestionsData = RestrictedData<(graphqlNormalize & IUserFlaggedQuestion)[], 'flaggedQuestions'>;
|
|
@@ -550,12 +550,15 @@ export const MARKSHEETS = gql `
|
|
|
550
550
|
query Marksheets($filter: MarksheetFilterInput!) {
|
|
551
551
|
restricted {
|
|
552
552
|
marksheets(filter: $filter) {
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
553
|
+
results {
|
|
554
|
+
id
|
|
555
|
+
topicNames
|
|
556
|
+
correct
|
|
557
|
+
incorrect
|
|
558
|
+
totalQuestions
|
|
559
|
+
isTestMarksheet
|
|
560
|
+
}
|
|
561
|
+
total
|
|
559
562
|
}
|
|
560
563
|
}
|
|
561
564
|
}
|
|
@@ -568,9 +571,9 @@ export const LATEST_PAST_MARKSHEET_ID = gql `
|
|
|
568
571
|
}
|
|
569
572
|
`;
|
|
570
573
|
export const LATEST_PAST_AGORA_ID = gql `
|
|
571
|
-
query
|
|
574
|
+
query latestAgoraId {
|
|
572
575
|
restricted {
|
|
573
|
-
|
|
576
|
+
latestAgoraId
|
|
574
577
|
}
|
|
575
578
|
}
|
|
576
579
|
`;
|
|
@@ -41,12 +41,15 @@ export const DASHBOARD_QBANK = gql `
|
|
|
41
41
|
totalQuestions
|
|
42
42
|
totalCards
|
|
43
43
|
marksheets(filter: $filter) {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
results {
|
|
45
|
+
id
|
|
46
|
+
topicNames
|
|
47
|
+
correct
|
|
48
|
+
incorrect
|
|
49
|
+
totalQuestions
|
|
50
|
+
isTestMarksheet
|
|
51
|
+
}
|
|
52
|
+
total
|
|
50
53
|
}
|
|
51
54
|
topics(filter: 0) {
|
|
52
55
|
id
|