@quesmed/types 2.6.201 → 2.6.203
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.
|
@@ -2,61 +2,20 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DASHBOARD = exports.DASHBOARD_QBANK = void 0;
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
|
-
const fragments_1 = require("../../fragments");
|
|
6
5
|
exports.DASHBOARD_QBANK = (0, client_1.gql) `
|
|
7
|
-
|
|
8
|
-
query Dashboard_Qbank($filter: MarksheetFilterInput!) {
|
|
6
|
+
query Dashboard_Qbank {
|
|
9
7
|
restricted {
|
|
10
8
|
latestPastMarksheetId
|
|
11
|
-
latestSessionId
|
|
12
9
|
user {
|
|
13
10
|
id
|
|
14
11
|
settings {
|
|
15
12
|
productSettings {
|
|
16
13
|
examDate
|
|
17
|
-
nextFeedbackDate
|
|
18
14
|
}
|
|
19
15
|
}
|
|
20
16
|
completedQuestionsCount
|
|
21
17
|
completedCorrectQuestionsCount
|
|
22
18
|
completedIncorrectQuestionsCount
|
|
23
|
-
completedCards {
|
|
24
|
-
id
|
|
25
|
-
createdAt
|
|
26
|
-
updatedAt
|
|
27
|
-
concept {
|
|
28
|
-
id
|
|
29
|
-
name
|
|
30
|
-
}
|
|
31
|
-
lastSeen
|
|
32
|
-
reviewDate
|
|
33
|
-
score
|
|
34
|
-
iteration
|
|
35
|
-
optimalFactor
|
|
36
|
-
cardId
|
|
37
|
-
card {
|
|
38
|
-
id
|
|
39
|
-
conceptId
|
|
40
|
-
concept {
|
|
41
|
-
id
|
|
42
|
-
name
|
|
43
|
-
}
|
|
44
|
-
topic {
|
|
45
|
-
id
|
|
46
|
-
name
|
|
47
|
-
}
|
|
48
|
-
question
|
|
49
|
-
explanation
|
|
50
|
-
pictures {
|
|
51
|
-
...PictureFields
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
completedCardsCount
|
|
56
|
-
completedGreenCardsCount
|
|
57
|
-
completedYellowCardsCount
|
|
58
|
-
completedRedCardsCount
|
|
59
|
-
marksheetsCount
|
|
60
19
|
dailyFeed {
|
|
61
20
|
topics {
|
|
62
21
|
id
|
|
@@ -76,13 +35,6 @@ exports.DASHBOARD_QBANK = (0, client_1.gql) `
|
|
|
76
35
|
greenCards
|
|
77
36
|
dailyTask
|
|
78
37
|
}
|
|
79
|
-
dailyProgress {
|
|
80
|
-
date
|
|
81
|
-
dateString
|
|
82
|
-
intensity
|
|
83
|
-
totalCorrect
|
|
84
|
-
totalCount
|
|
85
|
-
}
|
|
86
38
|
userProgress {
|
|
87
39
|
marksheetCount
|
|
88
40
|
questionsCount
|
|
@@ -93,49 +45,11 @@ exports.DASHBOARD_QBANK = (0, client_1.gql) `
|
|
|
93
45
|
}
|
|
94
46
|
totalQuestions
|
|
95
47
|
totalCards
|
|
96
|
-
marksheets(filter: $filter) {
|
|
97
|
-
results {
|
|
98
|
-
id
|
|
99
|
-
topicNames
|
|
100
|
-
correct
|
|
101
|
-
incorrect
|
|
102
|
-
totalQuestions
|
|
103
|
-
isTestMarksheet
|
|
104
|
-
}
|
|
105
|
-
total
|
|
106
|
-
}
|
|
107
|
-
topics(filter: 0) {
|
|
108
|
-
id
|
|
109
|
-
name
|
|
110
|
-
entitlement {
|
|
111
|
-
id
|
|
112
|
-
name
|
|
113
|
-
index
|
|
114
|
-
}
|
|
115
|
-
totalQuestions
|
|
116
|
-
correctQuestions
|
|
117
|
-
incorrectQuestions
|
|
118
|
-
totalCards
|
|
119
|
-
greenCards
|
|
120
|
-
yellowCards
|
|
121
|
-
redCards
|
|
122
|
-
dailyFeedCards
|
|
123
|
-
}
|
|
124
|
-
universityLeaderboard(limit: 3) {
|
|
125
|
-
updatedAt
|
|
126
|
-
month {
|
|
127
|
-
id
|
|
128
|
-
name
|
|
129
|
-
speciality
|
|
130
|
-
rank
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
48
|
}
|
|
134
49
|
}
|
|
135
50
|
`;
|
|
136
51
|
exports.DASHBOARD = (0, client_1.gql) `
|
|
137
|
-
|
|
138
|
-
query Dashboard($filter: MarksheetFilterInput!, $order: Int) {
|
|
52
|
+
query Dashboard {
|
|
139
53
|
restricted {
|
|
140
54
|
latestPastMarksheetId
|
|
141
55
|
latestSessionId
|
|
@@ -149,99 +63,6 @@ exports.DASHBOARD = (0, client_1.gql) `
|
|
|
149
63
|
}
|
|
150
64
|
universityId
|
|
151
65
|
classYear
|
|
152
|
-
completedQuestionsCount
|
|
153
|
-
completedCorrectQuestionsCount
|
|
154
|
-
completedIncorrectQuestionsCount
|
|
155
|
-
completedCards {
|
|
156
|
-
id
|
|
157
|
-
createdAt
|
|
158
|
-
updatedAt
|
|
159
|
-
concept {
|
|
160
|
-
id
|
|
161
|
-
name
|
|
162
|
-
}
|
|
163
|
-
lastSeen
|
|
164
|
-
reviewDate
|
|
165
|
-
score
|
|
166
|
-
iteration
|
|
167
|
-
optimalFactor
|
|
168
|
-
cardId
|
|
169
|
-
card {
|
|
170
|
-
id
|
|
171
|
-
conceptId
|
|
172
|
-
concept {
|
|
173
|
-
id
|
|
174
|
-
name
|
|
175
|
-
}
|
|
176
|
-
topic {
|
|
177
|
-
id
|
|
178
|
-
name
|
|
179
|
-
}
|
|
180
|
-
question
|
|
181
|
-
explanation
|
|
182
|
-
pictures {
|
|
183
|
-
...PictureFields
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
completedCardsCount
|
|
188
|
-
completedGreenCardsCount
|
|
189
|
-
completedYellowCardsCount
|
|
190
|
-
completedRedCardsCount
|
|
191
|
-
marksheetsCount
|
|
192
|
-
dailyProgress {
|
|
193
|
-
date
|
|
194
|
-
dateString
|
|
195
|
-
intensity
|
|
196
|
-
totalCorrect
|
|
197
|
-
totalCount
|
|
198
|
-
}
|
|
199
|
-
userProgress {
|
|
200
|
-
marksheetCount
|
|
201
|
-
questionsCount
|
|
202
|
-
daysInCurrentStreak
|
|
203
|
-
daysInPreviousStreak
|
|
204
|
-
daysInLongestStreak
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
totalQuestions
|
|
208
|
-
totalCards
|
|
209
|
-
marksheets(filter: $filter) {
|
|
210
|
-
results {
|
|
211
|
-
id
|
|
212
|
-
topicNames
|
|
213
|
-
correct
|
|
214
|
-
incorrect
|
|
215
|
-
totalQuestions
|
|
216
|
-
isTestMarksheet
|
|
217
|
-
}
|
|
218
|
-
total
|
|
219
|
-
}
|
|
220
|
-
topics(filter: 0, order: $order) {
|
|
221
|
-
id
|
|
222
|
-
name
|
|
223
|
-
entitlement {
|
|
224
|
-
id
|
|
225
|
-
name
|
|
226
|
-
index
|
|
227
|
-
}
|
|
228
|
-
totalQuestions
|
|
229
|
-
correctQuestions
|
|
230
|
-
incorrectQuestions
|
|
231
|
-
totalCards
|
|
232
|
-
greenCards
|
|
233
|
-
yellowCards
|
|
234
|
-
redCards
|
|
235
|
-
dailyFeedCards
|
|
236
|
-
}
|
|
237
|
-
universityLeaderboard(limit: 3) {
|
|
238
|
-
updatedAt
|
|
239
|
-
month {
|
|
240
|
-
id
|
|
241
|
-
name
|
|
242
|
-
speciality
|
|
243
|
-
rank
|
|
244
|
-
}
|
|
245
66
|
}
|
|
246
67
|
}
|
|
247
68
|
}
|
|
@@ -1,59 +1,18 @@
|
|
|
1
1
|
import { gql } from '@apollo/client';
|
|
2
|
-
import { PICTURE_FIELDS } from '../../fragments';
|
|
3
2
|
export const DASHBOARD_QBANK = gql `
|
|
4
|
-
|
|
5
|
-
query Dashboard_Qbank($filter: MarksheetFilterInput!) {
|
|
3
|
+
query Dashboard_Qbank {
|
|
6
4
|
restricted {
|
|
7
5
|
latestPastMarksheetId
|
|
8
|
-
latestSessionId
|
|
9
6
|
user {
|
|
10
7
|
id
|
|
11
8
|
settings {
|
|
12
9
|
productSettings {
|
|
13
10
|
examDate
|
|
14
|
-
nextFeedbackDate
|
|
15
11
|
}
|
|
16
12
|
}
|
|
17
13
|
completedQuestionsCount
|
|
18
14
|
completedCorrectQuestionsCount
|
|
19
15
|
completedIncorrectQuestionsCount
|
|
20
|
-
completedCards {
|
|
21
|
-
id
|
|
22
|
-
createdAt
|
|
23
|
-
updatedAt
|
|
24
|
-
concept {
|
|
25
|
-
id
|
|
26
|
-
name
|
|
27
|
-
}
|
|
28
|
-
lastSeen
|
|
29
|
-
reviewDate
|
|
30
|
-
score
|
|
31
|
-
iteration
|
|
32
|
-
optimalFactor
|
|
33
|
-
cardId
|
|
34
|
-
card {
|
|
35
|
-
id
|
|
36
|
-
conceptId
|
|
37
|
-
concept {
|
|
38
|
-
id
|
|
39
|
-
name
|
|
40
|
-
}
|
|
41
|
-
topic {
|
|
42
|
-
id
|
|
43
|
-
name
|
|
44
|
-
}
|
|
45
|
-
question
|
|
46
|
-
explanation
|
|
47
|
-
pictures {
|
|
48
|
-
...PictureFields
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
completedCardsCount
|
|
53
|
-
completedGreenCardsCount
|
|
54
|
-
completedYellowCardsCount
|
|
55
|
-
completedRedCardsCount
|
|
56
|
-
marksheetsCount
|
|
57
16
|
dailyFeed {
|
|
58
17
|
topics {
|
|
59
18
|
id
|
|
@@ -73,13 +32,6 @@ export const DASHBOARD_QBANK = gql `
|
|
|
73
32
|
greenCards
|
|
74
33
|
dailyTask
|
|
75
34
|
}
|
|
76
|
-
dailyProgress {
|
|
77
|
-
date
|
|
78
|
-
dateString
|
|
79
|
-
intensity
|
|
80
|
-
totalCorrect
|
|
81
|
-
totalCount
|
|
82
|
-
}
|
|
83
35
|
userProgress {
|
|
84
36
|
marksheetCount
|
|
85
37
|
questionsCount
|
|
@@ -90,49 +42,11 @@ export const DASHBOARD_QBANK = gql `
|
|
|
90
42
|
}
|
|
91
43
|
totalQuestions
|
|
92
44
|
totalCards
|
|
93
|
-
marksheets(filter: $filter) {
|
|
94
|
-
results {
|
|
95
|
-
id
|
|
96
|
-
topicNames
|
|
97
|
-
correct
|
|
98
|
-
incorrect
|
|
99
|
-
totalQuestions
|
|
100
|
-
isTestMarksheet
|
|
101
|
-
}
|
|
102
|
-
total
|
|
103
|
-
}
|
|
104
|
-
topics(filter: 0) {
|
|
105
|
-
id
|
|
106
|
-
name
|
|
107
|
-
entitlement {
|
|
108
|
-
id
|
|
109
|
-
name
|
|
110
|
-
index
|
|
111
|
-
}
|
|
112
|
-
totalQuestions
|
|
113
|
-
correctQuestions
|
|
114
|
-
incorrectQuestions
|
|
115
|
-
totalCards
|
|
116
|
-
greenCards
|
|
117
|
-
yellowCards
|
|
118
|
-
redCards
|
|
119
|
-
dailyFeedCards
|
|
120
|
-
}
|
|
121
|
-
universityLeaderboard(limit: 3) {
|
|
122
|
-
updatedAt
|
|
123
|
-
month {
|
|
124
|
-
id
|
|
125
|
-
name
|
|
126
|
-
speciality
|
|
127
|
-
rank
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
45
|
}
|
|
131
46
|
}
|
|
132
47
|
`;
|
|
133
48
|
export const DASHBOARD = gql `
|
|
134
|
-
|
|
135
|
-
query Dashboard($filter: MarksheetFilterInput!, $order: Int) {
|
|
49
|
+
query Dashboard {
|
|
136
50
|
restricted {
|
|
137
51
|
latestPastMarksheetId
|
|
138
52
|
latestSessionId
|
|
@@ -146,99 +60,6 @@ export const DASHBOARD = gql `
|
|
|
146
60
|
}
|
|
147
61
|
universityId
|
|
148
62
|
classYear
|
|
149
|
-
completedQuestionsCount
|
|
150
|
-
completedCorrectQuestionsCount
|
|
151
|
-
completedIncorrectQuestionsCount
|
|
152
|
-
completedCards {
|
|
153
|
-
id
|
|
154
|
-
createdAt
|
|
155
|
-
updatedAt
|
|
156
|
-
concept {
|
|
157
|
-
id
|
|
158
|
-
name
|
|
159
|
-
}
|
|
160
|
-
lastSeen
|
|
161
|
-
reviewDate
|
|
162
|
-
score
|
|
163
|
-
iteration
|
|
164
|
-
optimalFactor
|
|
165
|
-
cardId
|
|
166
|
-
card {
|
|
167
|
-
id
|
|
168
|
-
conceptId
|
|
169
|
-
concept {
|
|
170
|
-
id
|
|
171
|
-
name
|
|
172
|
-
}
|
|
173
|
-
topic {
|
|
174
|
-
id
|
|
175
|
-
name
|
|
176
|
-
}
|
|
177
|
-
question
|
|
178
|
-
explanation
|
|
179
|
-
pictures {
|
|
180
|
-
...PictureFields
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
completedCardsCount
|
|
185
|
-
completedGreenCardsCount
|
|
186
|
-
completedYellowCardsCount
|
|
187
|
-
completedRedCardsCount
|
|
188
|
-
marksheetsCount
|
|
189
|
-
dailyProgress {
|
|
190
|
-
date
|
|
191
|
-
dateString
|
|
192
|
-
intensity
|
|
193
|
-
totalCorrect
|
|
194
|
-
totalCount
|
|
195
|
-
}
|
|
196
|
-
userProgress {
|
|
197
|
-
marksheetCount
|
|
198
|
-
questionsCount
|
|
199
|
-
daysInCurrentStreak
|
|
200
|
-
daysInPreviousStreak
|
|
201
|
-
daysInLongestStreak
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
totalQuestions
|
|
205
|
-
totalCards
|
|
206
|
-
marksheets(filter: $filter) {
|
|
207
|
-
results {
|
|
208
|
-
id
|
|
209
|
-
topicNames
|
|
210
|
-
correct
|
|
211
|
-
incorrect
|
|
212
|
-
totalQuestions
|
|
213
|
-
isTestMarksheet
|
|
214
|
-
}
|
|
215
|
-
total
|
|
216
|
-
}
|
|
217
|
-
topics(filter: 0, order: $order) {
|
|
218
|
-
id
|
|
219
|
-
name
|
|
220
|
-
entitlement {
|
|
221
|
-
id
|
|
222
|
-
name
|
|
223
|
-
index
|
|
224
|
-
}
|
|
225
|
-
totalQuestions
|
|
226
|
-
correctQuestions
|
|
227
|
-
incorrectQuestions
|
|
228
|
-
totalCards
|
|
229
|
-
greenCards
|
|
230
|
-
yellowCards
|
|
231
|
-
redCards
|
|
232
|
-
dailyFeedCards
|
|
233
|
-
}
|
|
234
|
-
universityLeaderboard(limit: 3) {
|
|
235
|
-
updatedAt
|
|
236
|
-
month {
|
|
237
|
-
id
|
|
238
|
-
name
|
|
239
|
-
speciality
|
|
240
|
-
rank
|
|
241
|
-
}
|
|
242
63
|
}
|
|
243
64
|
}
|
|
244
65
|
}
|