@legendsoflearning/lol-sdk-core 0.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.
- package/dist/auth/index.d.mts +1 -0
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js +12 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/index.mjs +3 -0
- package/dist/auth/index.mjs.map +1 -0
- package/dist/cache/index.d.mts +26 -0
- package/dist/cache/index.d.ts +26 -0
- package/dist/cache/index.js +63 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/cache/index.mjs +60 -0
- package/dist/cache/index.mjs.map +1 -0
- package/dist/chunk-Q4UXELOU.mjs +284 -0
- package/dist/chunk-Q4UXELOU.mjs.map +1 -0
- package/dist/chunk-WWN77BBN.js +286 -0
- package/dist/chunk-WWN77BBN.js.map +1 -0
- package/dist/generated/admins/index.d.mts +2566 -0
- package/dist/generated/admins/index.d.ts +2566 -0
- package/dist/generated/admins/index.js +110 -0
- package/dist/generated/admins/index.js.map +1 -0
- package/dist/generated/admins/index.mjs +97 -0
- package/dist/generated/admins/index.mjs.map +1 -0
- package/dist/generated/developers/index.d.mts +330 -0
- package/dist/generated/developers/index.d.ts +330 -0
- package/dist/generated/developers/index.js +30 -0
- package/dist/generated/developers/index.js.map +1 -0
- package/dist/generated/developers/index.mjs +25 -0
- package/dist/generated/developers/index.mjs.map +1 -0
- package/dist/generated/parents/index.d.mts +1097 -0
- package/dist/generated/parents/index.d.ts +1097 -0
- package/dist/generated/parents/index.js +112 -0
- package/dist/generated/parents/index.js.map +1 -0
- package/dist/generated/parents/index.mjs +99 -0
- package/dist/generated/parents/index.mjs.map +1 -0
- package/dist/generated/play/index.d.mts +1060 -0
- package/dist/generated/play/index.d.ts +1060 -0
- package/dist/generated/play/index.js +109 -0
- package/dist/generated/play/index.js.map +1 -0
- package/dist/generated/play/index.mjs +96 -0
- package/dist/generated/play/index.mjs.map +1 -0
- package/dist/generated/public/index.d.mts +791 -0
- package/dist/generated/public/index.d.ts +791 -0
- package/dist/generated/public/index.js +39 -0
- package/dist/generated/public/index.js.map +1 -0
- package/dist/generated/public/index.mjs +33 -0
- package/dist/generated/public/index.mjs.map +1 -0
- package/dist/generated/teachers/index.d.mts +6205 -0
- package/dist/generated/teachers/index.d.ts +6205 -0
- package/dist/generated/teachers/index.js +353 -0
- package/dist/generated/teachers/index.js.map +1 -0
- package/dist/generated/teachers/index.mjs +282 -0
- package/dist/generated/teachers/index.mjs.map +1 -0
- package/dist/index-vM3xPKfV.d.mts +173 -0
- package/dist/index-vM3xPKfV.d.ts +173 -0
- package/dist/index.d.mts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +352 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +336 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +111 -0
|
@@ -0,0 +1,791 @@
|
|
|
1
|
+
import { DocumentTypeDecoration, ResultOf, TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
+
|
|
3
|
+
type Maybe<T> = T | null;
|
|
4
|
+
type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
type Exact<T extends {
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}> = {
|
|
8
|
+
[K in keyof T]: T[K];
|
|
9
|
+
};
|
|
10
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
13
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
|
+
};
|
|
16
|
+
type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* The `DateTime` scalar type represents a date and time in the UTC
|
|
48
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
49
|
+
* string, including UTC timezone ("Z"). The parsed date and time string will
|
|
50
|
+
* be converted to UTC if there is an offset.
|
|
51
|
+
*/
|
|
52
|
+
DateTime: {
|
|
53
|
+
input: any;
|
|
54
|
+
output: any;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* The `Json` scalar type represents arbitrary json string data, represented as UTF-8
|
|
58
|
+
* character sequences. The Json type is most often used to represent a free-form
|
|
59
|
+
* human-readable json string.
|
|
60
|
+
*/
|
|
61
|
+
Json: {
|
|
62
|
+
input: any;
|
|
63
|
+
output: any;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
type Activity = {
|
|
67
|
+
__typename?: 'Activity';
|
|
68
|
+
assessment?: Maybe<Assessment>;
|
|
69
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
70
|
+
awakeningActivity?: Maybe<AwakeningActivity>;
|
|
71
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
72
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
73
|
+
includeMiniGames?: Maybe<Scalars['Boolean']['output']>;
|
|
74
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
75
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
76
|
+
miniGame?: Maybe<Game>;
|
|
77
|
+
numOfQuestions?: Maybe<Scalars['Int']['output']>;
|
|
78
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
79
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
80
|
+
questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
81
|
+
questionsType?: Maybe<Scalars['String']['output']>;
|
|
82
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
83
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
84
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
85
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
86
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
87
|
+
video?: Maybe<Video>;
|
|
88
|
+
};
|
|
89
|
+
type ActivityQuestion = {
|
|
90
|
+
__typename?: 'ActivityQuestion';
|
|
91
|
+
activity?: Maybe<Activity>;
|
|
92
|
+
activityId?: Maybe<Scalars['ID']['output']>;
|
|
93
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
94
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
95
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
96
|
+
question?: Maybe<Question>;
|
|
97
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
98
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
99
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
100
|
+
};
|
|
101
|
+
type Answer = {
|
|
102
|
+
__typename?: 'Answer';
|
|
103
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
104
|
+
choiceNum?: Maybe<Scalars['Int']['output']>;
|
|
105
|
+
explanation?: Maybe<AnswerExplanation>;
|
|
106
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
107
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
108
|
+
};
|
|
109
|
+
type AnswerExplanation = {
|
|
110
|
+
__typename?: 'AnswerExplanation';
|
|
111
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
112
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
113
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
114
|
+
};
|
|
115
|
+
type Assessment = {
|
|
116
|
+
__typename?: 'Assessment';
|
|
117
|
+
activitySummary?: Maybe<Scalars['String']['output']>;
|
|
118
|
+
assessmentLearningObjectives?: Maybe<Array<Maybe<AssessmentLearningObjective>>>;
|
|
119
|
+
assessmentQuestions?: Maybe<Array<Maybe<AssessmentQuestion>>>;
|
|
120
|
+
durationInMinutes?: Maybe<Scalars['String']['output']>;
|
|
121
|
+
grades?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
122
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
123
|
+
languages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
124
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
125
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
126
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127
|
+
safeCreatedBy?: Maybe<SafeCreatedBy>;
|
|
128
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
129
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
130
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
131
|
+
};
|
|
132
|
+
type AssessmentLearningObjective = {
|
|
133
|
+
__typename?: 'AssessmentLearningObjective';
|
|
134
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
135
|
+
customName?: Maybe<Scalars['String']['output']>;
|
|
136
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
137
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
138
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
139
|
+
};
|
|
140
|
+
type AssessmentQuestion = {
|
|
141
|
+
__typename?: 'AssessmentQuestion';
|
|
142
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
143
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
144
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
145
|
+
question?: Maybe<Question>;
|
|
146
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
147
|
+
};
|
|
148
|
+
type Assignment = {
|
|
149
|
+
__typename?: 'Assignment';
|
|
150
|
+
activities?: Maybe<Array<Maybe<Activity>>>;
|
|
151
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
152
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
153
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
154
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
155
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
156
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
157
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
158
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159
|
+
safeCreatedBy?: Maybe<SafeCreatedBy>;
|
|
160
|
+
standards?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
161
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
162
|
+
};
|
|
163
|
+
type Audience = {
|
|
164
|
+
__typename?: 'Audience';
|
|
165
|
+
g1?: Maybe<Scalars['Boolean']['output']>;
|
|
166
|
+
g2?: Maybe<Scalars['Boolean']['output']>;
|
|
167
|
+
g3?: Maybe<Scalars['Boolean']['output']>;
|
|
168
|
+
g4?: Maybe<Scalars['Boolean']['output']>;
|
|
169
|
+
g5?: Maybe<Scalars['Boolean']['output']>;
|
|
170
|
+
g6?: Maybe<Scalars['Boolean']['output']>;
|
|
171
|
+
g7?: Maybe<Scalars['Boolean']['output']>;
|
|
172
|
+
g8?: Maybe<Scalars['Boolean']['output']>;
|
|
173
|
+
g9?: Maybe<Scalars['Boolean']['output']>;
|
|
174
|
+
g10?: Maybe<Scalars['Boolean']['output']>;
|
|
175
|
+
g11?: Maybe<Scalars['Boolean']['output']>;
|
|
176
|
+
g12?: Maybe<Scalars['Boolean']['output']>;
|
|
177
|
+
k?: Maybe<Scalars['Boolean']['output']>;
|
|
178
|
+
};
|
|
179
|
+
type AwakeningActivity = {
|
|
180
|
+
__typename?: 'AwakeningActivity';
|
|
181
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
182
|
+
playDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
183
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
184
|
+
};
|
|
185
|
+
type BuildVersion = {
|
|
186
|
+
__typename?: 'BuildVersion';
|
|
187
|
+
build?: Maybe<Scalars['String']['output']>;
|
|
188
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
189
|
+
};
|
|
190
|
+
type CheckAnswerResult = {
|
|
191
|
+
__typename?: 'CheckAnswerResult';
|
|
192
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
193
|
+
answersMap?: Maybe<Scalars['String']['output']>;
|
|
194
|
+
answersMapGraded?: Maybe<Scalars['String']['output']>;
|
|
195
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
196
|
+
questionId: Scalars['ID']['output'];
|
|
197
|
+
questionScoreCard?: Maybe<Scalars['Json']['output']>;
|
|
198
|
+
};
|
|
199
|
+
declare enum Collection {
|
|
200
|
+
Game = "GAME",
|
|
201
|
+
LearningObjective = "LEARNING_OBJECTIVE",
|
|
202
|
+
Subject = "SUBJECT"
|
|
203
|
+
}
|
|
204
|
+
type CollectionSearchResults = {
|
|
205
|
+
__typename?: 'CollectionSearchResults';
|
|
206
|
+
atomType?: Maybe<Scalars['String']['output']>;
|
|
207
|
+
found?: Maybe<Scalars['Int']['output']>;
|
|
208
|
+
hits?: Maybe<Array<Maybe<SearchHit>>>;
|
|
209
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
210
|
+
searchTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
211
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
212
|
+
};
|
|
213
|
+
type Concept = {
|
|
214
|
+
__typename?: 'Concept';
|
|
215
|
+
concept?: Maybe<Scalars['String']['output']>;
|
|
216
|
+
conceptIdent?: Maybe<Scalars['String']['output']>;
|
|
217
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
218
|
+
};
|
|
219
|
+
type District = {
|
|
220
|
+
__typename?: 'District';
|
|
221
|
+
district?: Maybe<Scalars['String']['output']>;
|
|
222
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
223
|
+
ncesDistrictId?: Maybe<Scalars['String']['output']>;
|
|
224
|
+
state?: Maybe<State>;
|
|
225
|
+
stateId?: Maybe<Scalars['ID']['output']>;
|
|
226
|
+
};
|
|
227
|
+
type Game = {
|
|
228
|
+
__typename?: 'Game';
|
|
229
|
+
audience?: Maybe<Audience>;
|
|
230
|
+
banner?: Maybe<Scalars['String']['output']>;
|
|
231
|
+
clonedFromGameId?: Maybe<Scalars['Int']['output']>;
|
|
232
|
+
comingSoon?: Maybe<Scalars['Boolean']['output']>;
|
|
233
|
+
conceptAlignedQuestions?: Maybe<Array<Maybe<Question>>>;
|
|
234
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
235
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
236
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
237
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
238
|
+
developerDescription?: Maybe<Scalars['String']['output']>;
|
|
239
|
+
developerInstructions?: Maybe<Scalars['String']['output']>;
|
|
240
|
+
discussionQuestionsAfter?: Maybe<Scalars['String']['output']>;
|
|
241
|
+
discussionQuestionsBefore?: Maybe<Scalars['String']['output']>;
|
|
242
|
+
editorPickAt?: Maybe<Scalars['DateTime']['output']>;
|
|
243
|
+
estimatedDuration?: Maybe<Scalars['Int']['output']>;
|
|
244
|
+
game?: Maybe<Scalars['String']['output']>;
|
|
245
|
+
gameDeveloperId?: Maybe<Scalars['Int']['output']>;
|
|
246
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
247
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
248
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
249
|
+
isAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
250
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
251
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
252
|
+
lexileLevel?: Maybe<Scalars['Int']['output']>;
|
|
253
|
+
multiLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
254
|
+
paidOut?: Maybe<Scalars['Boolean']['output']>;
|
|
255
|
+
pdfUrl?: Maybe<Scalars['String']['output']>;
|
|
256
|
+
questionGame?: Maybe<Scalars['Boolean']['output']>;
|
|
257
|
+
savesProgress?: Maybe<Scalars['Boolean']['output']>;
|
|
258
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
259
|
+
sponsorshipImageUrl?: Maybe<Scalars['String']['output']>;
|
|
260
|
+
sponsorshipLinkUrl?: Maybe<Scalars['String']['output']>;
|
|
261
|
+
stat?: Maybe<GameStat>;
|
|
262
|
+
supportsIpad?: Maybe<Scalars['Boolean']['output']>;
|
|
263
|
+
supportsSpanish?: Maybe<Scalars['Boolean']['output']>;
|
|
264
|
+
supportsTts?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
|
|
266
|
+
teacherReviews?: Maybe<GameReviewsList>;
|
|
267
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
268
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
269
|
+
version?: Maybe<GameVersion>;
|
|
270
|
+
video?: Maybe<Scalars['String']['output']>;
|
|
271
|
+
videoPreviewUrl?: Maybe<Scalars['String']['output']>;
|
|
272
|
+
vocabulary?: Maybe<Scalars['String']['output']>;
|
|
273
|
+
};
|
|
274
|
+
type GameConceptAlignedQuestionsArgs = {
|
|
275
|
+
learningObjectiveId: Scalars['ID']['input'];
|
|
276
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
277
|
+
};
|
|
278
|
+
type GameLearningObjectivesArgs = {
|
|
279
|
+
standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
280
|
+
};
|
|
281
|
+
type GameTeacherReviewsArgs = {
|
|
282
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
283
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
284
|
+
};
|
|
285
|
+
type GameQuestion = {
|
|
286
|
+
__typename?: 'GameQuestion';
|
|
287
|
+
alternatives?: Maybe<Array<Maybe<GameQuestionsAlternative>>>;
|
|
288
|
+
correctAlternativeId: Scalars['ID']['output'];
|
|
289
|
+
explanation?: Maybe<PublicQuestionExplanation>;
|
|
290
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
291
|
+
questionId: Scalars['ID']['output'];
|
|
292
|
+
stem: Scalars['String']['output'];
|
|
293
|
+
};
|
|
294
|
+
type GameQuestionsAlternative = {
|
|
295
|
+
__typename?: 'GameQuestionsAlternative';
|
|
296
|
+
alternativeId: Scalars['ID']['output'];
|
|
297
|
+
explanation?: Maybe<PublicAnswerExplanation>;
|
|
298
|
+
text: Scalars['String']['output'];
|
|
299
|
+
};
|
|
300
|
+
type GameReview = {
|
|
301
|
+
__typename?: 'GameReview';
|
|
302
|
+
checkAlignment?: Maybe<Scalars['Boolean']['output']>;
|
|
303
|
+
checkEngagement?: Maybe<Scalars['Boolean']['output']>;
|
|
304
|
+
checkFriendlyness?: Maybe<Scalars['Boolean']['output']>;
|
|
305
|
+
checkIssuesFree?: Maybe<Scalars['Boolean']['output']>;
|
|
306
|
+
contentIntegration?: Maybe<Scalars['Int']['output']>;
|
|
307
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
308
|
+
criticalThinkingLevel?: Maybe<Scalars['Int']['output']>;
|
|
309
|
+
easeOfPlay?: Maybe<Scalars['Int']['output']>;
|
|
310
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
311
|
+
manuallyApproved?: Maybe<Scalars['Boolean']['output']>;
|
|
312
|
+
pointsEarned?: Maybe<Scalars['Int']['output']>;
|
|
313
|
+
ratingEffectiveness?: Maybe<Scalars['Int']['output']>;
|
|
314
|
+
ratingEngagement?: Maybe<Scalars['Int']['output']>;
|
|
315
|
+
ratingInstructionClarity?: Maybe<Scalars['Int']['output']>;
|
|
316
|
+
ratingStability?: Maybe<Scalars['Int']['output']>;
|
|
317
|
+
review?: Maybe<Scalars['String']['output']>;
|
|
318
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
319
|
+
suggestedUse?: Maybe<Scalars['String']['output']>;
|
|
320
|
+
suggestions?: Maybe<Scalars['String']['output']>;
|
|
321
|
+
teacherName?: Maybe<Scalars['String']['output']>;
|
|
322
|
+
testerDisplayName?: Maybe<Scalars['String']['output']>;
|
|
323
|
+
totalPoints?: Maybe<Scalars['Int']['output']>;
|
|
324
|
+
upvotesCount?: Maybe<Scalars['Int']['output']>;
|
|
325
|
+
userHasUpvoted?: Maybe<Scalars['Boolean']['output']>;
|
|
326
|
+
};
|
|
327
|
+
type GameReviewsList = {
|
|
328
|
+
__typename?: 'GameReviewsList';
|
|
329
|
+
entries?: Maybe<Array<Maybe<GameReview>>>;
|
|
330
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
331
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
332
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
333
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
334
|
+
};
|
|
335
|
+
type GameStat = {
|
|
336
|
+
__typename?: 'GameStat';
|
|
337
|
+
compositeRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
338
|
+
compositeRatingScore?: Maybe<Scalars['Float']['output']>;
|
|
339
|
+
contentIntegrationAvg?: Maybe<Scalars['Float']['output']>;
|
|
340
|
+
easeOfPlayAvg?: Maybe<Scalars['Float']['output']>;
|
|
341
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
342
|
+
studentRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
343
|
+
studentRatingCount?: Maybe<Scalars['Float']['output']>;
|
|
344
|
+
studentRatingScoreSummary?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
suggestedUseSummary?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
teacherRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
347
|
+
teacherRatingCount?: Maybe<Scalars['Float']['output']>;
|
|
348
|
+
teacherRatingScoreSummary?: Maybe<Scalars['String']['output']>;
|
|
349
|
+
};
|
|
350
|
+
type GameVersion = {
|
|
351
|
+
__typename?: 'GameVersion';
|
|
352
|
+
acceptedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
353
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
354
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
355
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
356
|
+
gameType?: Maybe<Scalars['String']['output']>;
|
|
357
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
358
|
+
languageKey?: Maybe<Scalars['String']['output']>;
|
|
359
|
+
releaseNotes?: Maybe<Scalars['String']['output']>;
|
|
360
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
361
|
+
};
|
|
362
|
+
type GameplayerProps = {
|
|
363
|
+
__typename?: 'GameplayerProps';
|
|
364
|
+
gameVersionLanguageUrl?: Maybe<Scalars['String']['output']>;
|
|
365
|
+
gameVersionUrl?: Maybe<Scalars['String']['output']>;
|
|
366
|
+
gameVideoPreviewUrl?: Maybe<Scalars['String']['output']>;
|
|
367
|
+
pdfUrl?: Maybe<Scalars['String']['output']>;
|
|
368
|
+
questions?: Maybe<Array<Maybe<GameQuestion>>>;
|
|
369
|
+
};
|
|
370
|
+
type GamesList = {
|
|
371
|
+
__typename?: 'GamesList';
|
|
372
|
+
entries?: Maybe<Array<Maybe<Game>>>;
|
|
373
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
374
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
375
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
376
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
377
|
+
};
|
|
378
|
+
type Grade = {
|
|
379
|
+
__typename?: 'Grade';
|
|
380
|
+
grade?: Maybe<Scalars['String']['output']>;
|
|
381
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
382
|
+
};
|
|
383
|
+
type HighlightSnippet = {
|
|
384
|
+
__typename?: 'HighlightSnippet';
|
|
385
|
+
matchedTokens?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
386
|
+
snippet?: Maybe<Scalars['String']['output']>;
|
|
387
|
+
};
|
|
388
|
+
type HitHighlight = {
|
|
389
|
+
__typename?: 'HitHighlight';
|
|
390
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
391
|
+
indices?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
392
|
+
snippets?: Maybe<Array<Maybe<HighlightSnippet>>>;
|
|
393
|
+
};
|
|
394
|
+
type LearningObjective = {
|
|
395
|
+
__typename?: 'LearningObjective';
|
|
396
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
397
|
+
gameCount?: Maybe<Scalars['Int']['output']>;
|
|
398
|
+
games?: Maybe<GamesList>;
|
|
399
|
+
grades?: Maybe<Array<Maybe<Grade>>>;
|
|
400
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
401
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
402
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
403
|
+
learningObjective?: Maybe<Scalars['String']['output']>;
|
|
404
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
405
|
+
ngssDciName?: Maybe<Scalars['String']['output']>;
|
|
406
|
+
questionCount?: Maybe<Scalars['Int']['output']>;
|
|
407
|
+
sortOrder?: Maybe<Scalars['String']['output']>;
|
|
408
|
+
standardCode?: Maybe<Scalars['String']['output']>;
|
|
409
|
+
subject?: Maybe<Subject>;
|
|
410
|
+
};
|
|
411
|
+
type LearningObjectiveGamesArgs = {
|
|
412
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
413
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
414
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
415
|
+
};
|
|
416
|
+
type LearningObjectivesList = {
|
|
417
|
+
__typename?: 'LearningObjectivesList';
|
|
418
|
+
entries?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
419
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
420
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
421
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
422
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
423
|
+
};
|
|
424
|
+
type Partner = {
|
|
425
|
+
__typename?: 'Partner';
|
|
426
|
+
footer?: Maybe<Scalars['Boolean']['output']>;
|
|
427
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
428
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
429
|
+
loadingText?: Maybe<Scalars['String']['output']>;
|
|
430
|
+
partnerCode?: Maybe<Scalars['String']['output']>;
|
|
431
|
+
showFooterBtn?: Maybe<Scalars['Boolean']['output']>;
|
|
432
|
+
showLogo?: Maybe<Scalars['Boolean']['output']>;
|
|
433
|
+
signUp?: Maybe<Scalars['Boolean']['output']>;
|
|
434
|
+
timeLimit?: Maybe<Scalars['Int']['output']>;
|
|
435
|
+
};
|
|
436
|
+
type PublicAnswerExplanation = {
|
|
437
|
+
__typename?: 'PublicAnswerExplanation';
|
|
438
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
439
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
440
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
441
|
+
};
|
|
442
|
+
type PublicGame = {
|
|
443
|
+
__typename?: 'PublicGame';
|
|
444
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
445
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
446
|
+
gameType?: Maybe<Scalars['String']['output']>;
|
|
447
|
+
gameplayerProps?: Maybe<GameplayerProps>;
|
|
448
|
+
languages?: Maybe<Scalars['String']['output']>;
|
|
449
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
450
|
+
lolPartnerType?: Maybe<Scalars['String']['output']>;
|
|
451
|
+
partner?: Maybe<Partner>;
|
|
452
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
453
|
+
translationId?: Maybe<Scalars['ID']['output']>;
|
|
454
|
+
};
|
|
455
|
+
type PublicQuestionExplanation = {
|
|
456
|
+
__typename?: 'PublicQuestionExplanation';
|
|
457
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
458
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
459
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
460
|
+
};
|
|
461
|
+
type Question = {
|
|
462
|
+
__typename?: 'Question';
|
|
463
|
+
answers?: Maybe<Array<Maybe<Answer>>>;
|
|
464
|
+
correctAnswerId?: Maybe<Scalars['Int']['output']>;
|
|
465
|
+
depthOfKnowledge?: Maybe<Scalars['Int']['output']>;
|
|
466
|
+
explanation?: Maybe<QuestionExplanation>;
|
|
467
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
468
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
469
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
470
|
+
layout?: Maybe<Scalars['String']['output']>;
|
|
471
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
472
|
+
scoreCard?: Maybe<Scalars['Json']['output']>;
|
|
473
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
474
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
475
|
+
};
|
|
476
|
+
type QuestionExplanation = {
|
|
477
|
+
__typename?: 'QuestionExplanation';
|
|
478
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
479
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
480
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
481
|
+
};
|
|
482
|
+
type QuestionsList = {
|
|
483
|
+
__typename?: 'QuestionsList';
|
|
484
|
+
entries?: Maybe<Array<Maybe<Question>>>;
|
|
485
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
486
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
487
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
488
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
489
|
+
};
|
|
490
|
+
type RootMutationType = {
|
|
491
|
+
__typename?: 'RootMutationType';
|
|
492
|
+
checkAnswer?: Maybe<CheckAnswerResult>;
|
|
493
|
+
};
|
|
494
|
+
type RootMutationTypeCheckAnswerArgs = {
|
|
495
|
+
answerId?: InputMaybe<Scalars['ID']['input']>;
|
|
496
|
+
answersMap?: InputMaybe<Scalars['String']['input']>;
|
|
497
|
+
questionId?: InputMaybe<Scalars['ID']['input']>;
|
|
498
|
+
};
|
|
499
|
+
type RootQueryType = {
|
|
500
|
+
__typename?: 'RootQueryType';
|
|
501
|
+
activity?: Maybe<Activity>;
|
|
502
|
+
/** The current version for the LoL Public GraphQL API. */
|
|
503
|
+
apiVersion?: Maybe<BuildVersion>;
|
|
504
|
+
assessment?: Maybe<Assessment>;
|
|
505
|
+
assignment?: Maybe<Assignment>;
|
|
506
|
+
/** Search districts by name for signup */
|
|
507
|
+
districtSearch?: Maybe<Array<Maybe<District>>>;
|
|
508
|
+
/** Districts listing for signup (requires state_id) */
|
|
509
|
+
districts?: Maybe<Array<Maybe<District>>>;
|
|
510
|
+
/** Game details */
|
|
511
|
+
game?: Maybe<Game>;
|
|
512
|
+
/** Games search */
|
|
513
|
+
games?: Maybe<GamesList>;
|
|
514
|
+
/** Learning objectives available to public users */
|
|
515
|
+
learningObjectives?: Maybe<LearningObjectivesList>;
|
|
516
|
+
/** Public Game */
|
|
517
|
+
publicGame?: Maybe<PublicGame>;
|
|
518
|
+
/** Questions database */
|
|
519
|
+
questions?: Maybe<QuestionsList>;
|
|
520
|
+
/** Search schools by name for signup */
|
|
521
|
+
schoolSearch?: Maybe<Array<Maybe<School>>>;
|
|
522
|
+
/** Schools listing for signup (requires district_id or state_id) */
|
|
523
|
+
schools?: Maybe<Array<Maybe<School>>>;
|
|
524
|
+
search?: Maybe<SearchResult>;
|
|
525
|
+
/** States listing for signup */
|
|
526
|
+
states?: Maybe<Array<Maybe<State>>>;
|
|
527
|
+
/** Subjects available to public users */
|
|
528
|
+
subjects?: Maybe<SubjectsList>;
|
|
529
|
+
};
|
|
530
|
+
type RootQueryTypeActivityArgs = {
|
|
531
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
532
|
+
};
|
|
533
|
+
type RootQueryTypeAssessmentArgs = {
|
|
534
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
535
|
+
};
|
|
536
|
+
type RootQueryTypeAssignmentArgs = {
|
|
537
|
+
publicCode?: InputMaybe<Scalars['ID']['input']>;
|
|
538
|
+
shareCode?: InputMaybe<Scalars['ID']['input']>;
|
|
539
|
+
};
|
|
540
|
+
type RootQueryTypeDistrictSearchArgs = {
|
|
541
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
542
|
+
search: Scalars['String']['input'];
|
|
543
|
+
stateId?: InputMaybe<Scalars['ID']['input']>;
|
|
544
|
+
};
|
|
545
|
+
type RootQueryTypeDistrictsArgs = {
|
|
546
|
+
stateId: Scalars['ID']['input'];
|
|
547
|
+
};
|
|
548
|
+
type RootQueryTypeGameArgs = {
|
|
549
|
+
id: Scalars['ID']['input'];
|
|
550
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
551
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
552
|
+
};
|
|
553
|
+
type RootQueryTypeGamesArgs = {
|
|
554
|
+
conceptIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
555
|
+
gameType?: InputMaybe<Scalars['String']['input']>;
|
|
556
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
557
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
558
|
+
includeLosInSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
559
|
+
learningObjectiveIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
560
|
+
maxLexileLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
561
|
+
multiLanguage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
562
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
563
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
564
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
565
|
+
supportsIpad?: InputMaybe<Scalars['Boolean']['input']>;
|
|
566
|
+
supportsTts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
567
|
+
};
|
|
568
|
+
type RootQueryTypeLearningObjectivesArgs = {
|
|
569
|
+
gradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
570
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
571
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
572
|
+
instructional?: InputMaybe<Scalars['Boolean']['input']>;
|
|
573
|
+
minGameCount?: InputMaybe<Scalars['Int']['input']>;
|
|
574
|
+
minQuestionCount?: InputMaybe<Scalars['Int']['input']>;
|
|
575
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
576
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
577
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
578
|
+
subjectAreas?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
579
|
+
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
580
|
+
};
|
|
581
|
+
type RootQueryTypePublicGameArgs = {
|
|
582
|
+
gameId: Scalars['ID']['input'];
|
|
583
|
+
gameVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
584
|
+
lang?: InputMaybe<Scalars['String']['input']>;
|
|
585
|
+
learningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
586
|
+
partner: Scalars['String']['input'];
|
|
587
|
+
review?: InputMaybe<Scalars['Boolean']['input']>;
|
|
588
|
+
translationId?: InputMaybe<Scalars['ID']['input']>;
|
|
589
|
+
};
|
|
590
|
+
type RootQueryTypeQuestionsArgs = {
|
|
591
|
+
conceptIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
592
|
+
doks?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
593
|
+
formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
594
|
+
gameId?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
+
hasImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
596
|
+
layouts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
597
|
+
learningObjectiveIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
598
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
599
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
600
|
+
questionIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
601
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
602
|
+
standardId?: InputMaybe<Scalars['String']['input']>;
|
|
603
|
+
statuses?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
604
|
+
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
605
|
+
};
|
|
606
|
+
type RootQueryTypeSchoolSearchArgs = {
|
|
607
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
608
|
+
search: Scalars['String']['input'];
|
|
609
|
+
};
|
|
610
|
+
type RootQueryTypeSchoolsArgs = {
|
|
611
|
+
districtId?: InputMaybe<Scalars['ID']['input']>;
|
|
612
|
+
stateId?: InputMaybe<Scalars['ID']['input']>;
|
|
613
|
+
};
|
|
614
|
+
type RootQueryTypeSearchArgs = {
|
|
615
|
+
atomType?: InputMaybe<Collection>;
|
|
616
|
+
filters?: InputMaybe<SearchFilter>;
|
|
617
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
618
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
619
|
+
standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
620
|
+
term: Scalars['String']['input'];
|
|
621
|
+
};
|
|
622
|
+
type RootQueryTypeSubjectsArgs = {
|
|
623
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
624
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
625
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
+
};
|
|
627
|
+
type SafeCreatedBy = {
|
|
628
|
+
__typename?: 'SafeCreatedBy';
|
|
629
|
+
avatarName?: Maybe<Scalars['String']['output']>;
|
|
630
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
631
|
+
fullDisplayName?: Maybe<Scalars['String']['output']>;
|
|
632
|
+
imageUploadHash?: Maybe<Scalars['String']['output']>;
|
|
633
|
+
lastInitial?: Maybe<Scalars['String']['output']>;
|
|
634
|
+
};
|
|
635
|
+
type School = {
|
|
636
|
+
__typename?: 'School';
|
|
637
|
+
district?: Maybe<District>;
|
|
638
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
639
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
640
|
+
ncesSchoolId?: Maybe<Scalars['String']['output']>;
|
|
641
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
642
|
+
state?: Maybe<State>;
|
|
643
|
+
stateId?: Maybe<Scalars['ID']['output']>;
|
|
644
|
+
};
|
|
645
|
+
type SearchFacetCount = {
|
|
646
|
+
__typename?: 'SearchFacetCount';
|
|
647
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
648
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
649
|
+
};
|
|
650
|
+
type SearchFacets = {
|
|
651
|
+
__typename?: 'SearchFacets';
|
|
652
|
+
gameType?: Maybe<Array<Maybe<SearchFacetCount>>>;
|
|
653
|
+
grades?: Maybe<Array<Maybe<SearchFacetCount>>>;
|
|
654
|
+
subjectArea?: Maybe<Array<Maybe<SearchFacetCount>>>;
|
|
655
|
+
tags?: Maybe<Array<Maybe<SearchFacetCount>>>;
|
|
656
|
+
};
|
|
657
|
+
type SearchFilter = {
|
|
658
|
+
contentType?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
659
|
+
gameType?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
660
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
661
|
+
learningObjectives?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
662
|
+
lexileLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
663
|
+
subjectArea?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
664
|
+
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
665
|
+
};
|
|
666
|
+
type SearchHit = {
|
|
667
|
+
__typename?: 'SearchHit';
|
|
668
|
+
game?: Maybe<SearchResultGame>;
|
|
669
|
+
highlights?: Maybe<Array<Maybe<HitHighlight>>>;
|
|
670
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
671
|
+
learningObjective?: Maybe<SearchResultLearningObjective>;
|
|
672
|
+
subject?: Maybe<SearchResultSubject>;
|
|
673
|
+
};
|
|
674
|
+
type SearchResult = {
|
|
675
|
+
__typename?: 'SearchResult';
|
|
676
|
+
facets?: Maybe<SearchFacets>;
|
|
677
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
678
|
+
results?: Maybe<Array<Maybe<CollectionSearchResults>>>;
|
|
679
|
+
};
|
|
680
|
+
type SearchResultGame = {
|
|
681
|
+
__typename?: 'SearchResultGame';
|
|
682
|
+
banner?: Maybe<Scalars['String']['output']>;
|
|
683
|
+
compositeRating?: Maybe<Scalars['Float']['output']>;
|
|
684
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
685
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
686
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
687
|
+
grades?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
688
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
689
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
690
|
+
learningObjectives?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
691
|
+
lexileLevel?: Maybe<Scalars['Int']['output']>;
|
|
692
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
693
|
+
standard?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
694
|
+
studentRating?: Maybe<Scalars['Float']['output']>;
|
|
695
|
+
studentRatingCount?: Maybe<Scalars['Int']['output']>;
|
|
696
|
+
subjectArea?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
697
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
698
|
+
teacherRating?: Maybe<Scalars['Float']['output']>;
|
|
699
|
+
teacherRatingCount?: Maybe<Scalars['Int']['output']>;
|
|
700
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
701
|
+
videoPreviewUrl?: Maybe<Scalars['String']['output']>;
|
|
702
|
+
vocabulary?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
703
|
+
};
|
|
704
|
+
type SearchResultLearningObjective = {
|
|
705
|
+
__typename?: 'SearchResultLearningObjective';
|
|
706
|
+
cropDirection?: Maybe<Scalars['String']['output']>;
|
|
707
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
708
|
+
grades?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
709
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
710
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
711
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
712
|
+
ngssDciName?: Maybe<Scalars['String']['output']>;
|
|
713
|
+
standard?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
714
|
+
subjectArea?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
715
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
716
|
+
};
|
|
717
|
+
type SearchResultSubject = {
|
|
718
|
+
__typename?: 'SearchResultSubject';
|
|
719
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
720
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
721
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
722
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
723
|
+
standard?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
724
|
+
subjectArea?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
725
|
+
};
|
|
726
|
+
type State = {
|
|
727
|
+
__typename?: 'State';
|
|
728
|
+
abbrev?: Maybe<Scalars['String']['output']>;
|
|
729
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
730
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
731
|
+
};
|
|
732
|
+
type Subject = {
|
|
733
|
+
__typename?: 'Subject';
|
|
734
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
735
|
+
iconSvgName?: Maybe<Scalars['String']['output']>;
|
|
736
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
737
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
738
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
739
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
740
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
741
|
+
sortOrder?: Maybe<Scalars['String']['output']>;
|
|
742
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
743
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
744
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
745
|
+
};
|
|
746
|
+
type SubjectsList = {
|
|
747
|
+
__typename?: 'SubjectsList';
|
|
748
|
+
entries?: Maybe<Array<Maybe<Subject>>>;
|
|
749
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
750
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
751
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
752
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
753
|
+
};
|
|
754
|
+
type Video = {
|
|
755
|
+
__typename?: 'Video';
|
|
756
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
757
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
758
|
+
playDuration?: Maybe<Scalars['Int']['output']>;
|
|
759
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
760
|
+
title: Scalars['String']['output'];
|
|
761
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
762
|
+
url: Scalars['String']['output'];
|
|
763
|
+
vimeoId?: Maybe<Scalars['String']['output']>;
|
|
764
|
+
youtubeId?: Maybe<Scalars['String']['output']>;
|
|
765
|
+
};
|
|
766
|
+
|
|
767
|
+
type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
|
|
768
|
+
' $fragmentName'?: infer TKey;
|
|
769
|
+
}] ? TKey extends string ? {
|
|
770
|
+
' $fragmentRefs'?: {
|
|
771
|
+
[key in TKey]: TType;
|
|
772
|
+
};
|
|
773
|
+
} : never : never : never;
|
|
774
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
|
|
775
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
|
|
776
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
|
|
777
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
|
|
778
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
|
|
779
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
|
|
780
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
|
|
781
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
|
|
782
|
+
declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
|
|
783
|
+
declare function isFragmentReady<TQuery, TFrag>(queryNode: DocumentTypeDecoration<TQuery, any>, fragmentNode: TypedDocumentNode<TFrag>, data: FragmentType<TypedDocumentNode<Incremental<TFrag>, any>> | null | undefined): data is FragmentType<typeof fragmentNode>;
|
|
784
|
+
|
|
785
|
+
/**
|
|
786
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
787
|
+
*/
|
|
788
|
+
declare function graphql(source: string): unknown;
|
|
789
|
+
type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
|
|
790
|
+
|
|
791
|
+
export { type Activity, type ActivityQuestion, type Answer, type AnswerExplanation, type Assessment, type AssessmentLearningObjective, type AssessmentQuestion, type Assignment, type Audience, type AwakeningActivity, type BuildVersion, type CheckAnswerResult, Collection, type CollectionSearchResults, type Concept, type District, type DocumentType, type Exact, type FragmentType, type Game, type GameConceptAlignedQuestionsArgs, type GameLearningObjectivesArgs, type GameQuestion, type GameQuestionsAlternative, type GameReview, type GameReviewsList, type GameStat, type GameTeacherReviewsArgs, type GameVersion, type GameplayerProps, type GamesList, type Grade, type HighlightSnippet, type HitHighlight, type Incremental, type InputMaybe, type LearningObjective, type LearningObjectiveGamesArgs, type LearningObjectivesList, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type Partner, type PublicAnswerExplanation, type PublicGame, type PublicQuestionExplanation, type Question, type QuestionExplanation, type QuestionsList, type RootMutationType, type RootMutationTypeCheckAnswerArgs, type RootQueryType, type RootQueryTypeActivityArgs, type RootQueryTypeAssessmentArgs, type RootQueryTypeAssignmentArgs, type RootQueryTypeDistrictSearchArgs, type RootQueryTypeDistrictsArgs, type RootQueryTypeGameArgs, type RootQueryTypeGamesArgs, type RootQueryTypeLearningObjectivesArgs, type RootQueryTypePublicGameArgs, type RootQueryTypeQuestionsArgs, type RootQueryTypeSchoolSearchArgs, type RootQueryTypeSchoolsArgs, type RootQueryTypeSearchArgs, type RootQueryTypeSubjectsArgs, type SafeCreatedBy, type Scalars, type School, type SearchFacetCount, type SearchFacets, type SearchFilter, type SearchHit, type SearchResult, type SearchResultGame, type SearchResultLearningObjective, type SearchResultSubject, type State, type Subject, type SubjectsList, type Video, graphql, isFragmentReady, makeFragmentData, useFragment };
|