@legendsoflearning/lol-sdk-core 0.0.2
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/README.md +172 -0
- 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 +2738 -0
- package/dist/generated/admins/index.d.ts +2738 -0
- package/dist/generated/admins/index.js +126 -0
- package/dist/generated/admins/index.js.map +1 -0
- package/dist/generated/admins/index.mjs +108 -0
- package/dist/generated/admins/index.mjs.map +1 -0
- package/dist/generated/agents/index.d.mts +1744 -0
- package/dist/generated/agents/index.d.ts +1744 -0
- package/dist/generated/agents/index.js +220 -0
- package/dist/generated/agents/index.js.map +1 -0
- package/dist/generated/agents/index.mjs +168 -0
- package/dist/generated/agents/index.mjs.map +1 -0
- package/dist/generated/developers/index.d.mts +748 -0
- package/dist/generated/developers/index.d.ts +748 -0
- package/dist/generated/developers/index.js +72 -0
- package/dist/generated/developers/index.js.map +1 -0
- package/dist/generated/developers/index.mjs +54 -0
- package/dist/generated/developers/index.mjs.map +1 -0
- package/dist/generated/parents/index.d.mts +2446 -0
- package/dist/generated/parents/index.d.ts +2446 -0
- package/dist/generated/parents/index.js +272 -0
- package/dist/generated/parents/index.js.map +1 -0
- package/dist/generated/parents/index.mjs +206 -0
- package/dist/generated/parents/index.mjs.map +1 -0
- package/dist/generated/play/index.d.mts +1740 -0
- package/dist/generated/play/index.d.ts +1740 -0
- package/dist/generated/play/index.js +173 -0
- package/dist/generated/play/index.js.map +1 -0
- package/dist/generated/play/index.mjs +139 -0
- package/dist/generated/play/index.mjs.map +1 -0
- package/dist/generated/public/index.d.mts +1126 -0
- package/dist/generated/public/index.d.ts +1126 -0
- package/dist/generated/public/index.js +58 -0
- package/dist/generated/public/index.js.map +1 -0
- package/dist/generated/public/index.mjs +46 -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/generated/translation-hub/index.d.mts +2018 -0
- package/dist/generated/translation-hub/index.d.ts +2018 -0
- package/dist/generated/translation-hub/index.js +186 -0
- package/dist/generated/translation-hub/index.js.map +1 -0
- package/dist/generated/translation-hub/index.mjs +135 -0
- package/dist/generated/translation-hub/index.mjs.map +1 -0
- package/dist/index-CYIBtoSV.d.mts +173 -0
- package/dist/index-CYIBtoSV.d.ts +173 -0
- package/dist/index.d.mts +154 -0
- package/dist/index.d.ts +154 -0
- package/dist/index.js +364 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +348 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +121 -0
|
@@ -0,0 +1,2738 @@
|
|
|
1
|
+
import { TypedDocumentNode, DocumentTypeDecoration, ResultOf } 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 `Date` scalar type represents a date. The Date appears in a JSON
|
|
48
|
+
* response as an ISO8601 formatted string, without a time component.
|
|
49
|
+
*/
|
|
50
|
+
Date: {
|
|
51
|
+
input: any;
|
|
52
|
+
output: any;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* The `DateTime` scalar type represents a date and time in the UTC
|
|
56
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
57
|
+
* string, including UTC timezone ("Z"). The parsed date and time string will
|
|
58
|
+
* be converted to UTC if there is an offset.
|
|
59
|
+
*/
|
|
60
|
+
DateTime: {
|
|
61
|
+
input: any;
|
|
62
|
+
output: any;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* The `Json` scalar type represents arbitrary json string data, represented as UTF-8
|
|
66
|
+
* character sequences. The Json type is most often used to represent a free-form
|
|
67
|
+
* human-readable json string.
|
|
68
|
+
*/
|
|
69
|
+
Json: {
|
|
70
|
+
input: any;
|
|
71
|
+
output: any;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* The `Naive DateTime` scalar type represents a naive date and time without
|
|
75
|
+
* timezone. The DateTime appears in a JSON response as an ISO8601 formatted
|
|
76
|
+
* string.
|
|
77
|
+
*/
|
|
78
|
+
NaiveDateTime: {
|
|
79
|
+
input: any;
|
|
80
|
+
output: any;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
type AbacAction = {
|
|
84
|
+
__typename?: 'AbacAction';
|
|
85
|
+
action: Scalars['String']['output'];
|
|
86
|
+
id: Scalars['ID']['output'];
|
|
87
|
+
};
|
|
88
|
+
type AbacGrade = {
|
|
89
|
+
__typename?: 'AbacGrade';
|
|
90
|
+
grade: Scalars['Int']['output'];
|
|
91
|
+
policyId: Scalars['ID']['output'];
|
|
92
|
+
};
|
|
93
|
+
type AbacPolicy = {
|
|
94
|
+
__typename?: 'AbacPolicy';
|
|
95
|
+
actions?: Maybe<Array<Maybe<AbacAction>>>;
|
|
96
|
+
id: Scalars['ID']['output'];
|
|
97
|
+
name: Scalars['String']['output'];
|
|
98
|
+
subjectDistrictAdmins?: Maybe<Array<Maybe<District>>>;
|
|
99
|
+
subjectDistrictStudents?: Maybe<Array<Maybe<District>>>;
|
|
100
|
+
subjectGrades?: Maybe<Array<Maybe<AbacGrade>>>;
|
|
101
|
+
subjectSchoolStudents?: Maybe<Array<Maybe<School>>>;
|
|
102
|
+
subjectStateAdmins?: Maybe<Array<Maybe<State>>>;
|
|
103
|
+
subjectUsers?: Maybe<Array<Maybe<User>>>;
|
|
104
|
+
};
|
|
105
|
+
type AbacPolicyUpdate = {
|
|
106
|
+
/** List of actions by name, such as "read" and "update" */
|
|
107
|
+
actions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
108
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
109
|
+
/** List of district ids for district admins */
|
|
110
|
+
subjectDistrictAdmins?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
111
|
+
/** List of district ids for students */
|
|
112
|
+
subjectDistrictStudents?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
113
|
+
/** List of student grades */
|
|
114
|
+
subjectGrades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
115
|
+
/** List of school ids for students */
|
|
116
|
+
subjectSchoolStudents?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
117
|
+
/** List of state ids for district admins */
|
|
118
|
+
subjectStateAdmins?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
119
|
+
/** List of user ids */
|
|
120
|
+
subjectUsers?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
121
|
+
};
|
|
122
|
+
type AccountConfig = {
|
|
123
|
+
__typename?: 'AccountConfig';
|
|
124
|
+
activatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
125
|
+
deactivatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
126
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
127
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
128
|
+
provider?: Maybe<Provider>;
|
|
129
|
+
providerId?: Maybe<Scalars['ID']['output']>;
|
|
130
|
+
};
|
|
131
|
+
type AccountConfigsList = {
|
|
132
|
+
__typename?: 'AccountConfigsList';
|
|
133
|
+
entries?: Maybe<Array<Maybe<AccountConfig>>>;
|
|
134
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
135
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
136
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
137
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
138
|
+
};
|
|
139
|
+
type Activity = {
|
|
140
|
+
__typename?: 'Activity';
|
|
141
|
+
assessment?: Maybe<Assessment>;
|
|
142
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
143
|
+
awakeningActivity?: Maybe<AwakeningActivity>;
|
|
144
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
145
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
146
|
+
includeMiniGames?: Maybe<Scalars['Boolean']['output']>;
|
|
147
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
148
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
149
|
+
miniGame?: Maybe<Game>;
|
|
150
|
+
numOfQuestions?: Maybe<Scalars['Int']['output']>;
|
|
151
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
152
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
153
|
+
questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
154
|
+
questionsType?: Maybe<Scalars['String']['output']>;
|
|
155
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
156
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
157
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
158
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
159
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
video?: Maybe<Video>;
|
|
161
|
+
};
|
|
162
|
+
type ActivityInputV2 = {
|
|
163
|
+
assessmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
164
|
+
awakeningActivityId?: InputMaybe<Scalars['ID']['input']>;
|
|
165
|
+
durationInMinutes?: InputMaybe<Scalars['Int']['input']>;
|
|
166
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
167
|
+
includeMiniGames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
168
|
+
learningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
169
|
+
miniGameAssessmentQuestionCount?: InputMaybe<Scalars['Int']['input']>;
|
|
170
|
+
miniGameId?: InputMaybe<Scalars['ID']['input']>;
|
|
171
|
+
numOfQuestions?: InputMaybe<Scalars['Int']['input']>;
|
|
172
|
+
order?: InputMaybe<Scalars['Float']['input']>;
|
|
173
|
+
questions?: InputMaybe<Array<InputMaybe<ActivityQuestionInput>>>;
|
|
174
|
+
questionsType?: InputMaybe<Scalars['String']['input']>;
|
|
175
|
+
randomQuestionOrder?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176
|
+
standardId?: InputMaybe<Scalars['String']['input']>;
|
|
177
|
+
subjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
178
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
179
|
+
videoId?: InputMaybe<Scalars['ID']['input']>;
|
|
180
|
+
};
|
|
181
|
+
type ActivityQuestion = {
|
|
182
|
+
__typename?: 'ActivityQuestion';
|
|
183
|
+
activity?: Maybe<ActivityV2>;
|
|
184
|
+
activityId?: Maybe<Scalars['ID']['output']>;
|
|
185
|
+
answers?: Maybe<Array<Maybe<PlayerActivityAnswer>>>;
|
|
186
|
+
groupingId?: Maybe<Scalars['String']['output']>;
|
|
187
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
188
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
189
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
190
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
191
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
192
|
+
question?: Maybe<Question>;
|
|
193
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
194
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
195
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
196
|
+
};
|
|
197
|
+
type ActivityQuestionInput = {
|
|
198
|
+
learningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
199
|
+
order?: InputMaybe<Scalars['Float']['input']>;
|
|
200
|
+
questionId?: InputMaybe<Scalars['ID']['input']>;
|
|
201
|
+
};
|
|
202
|
+
type ActivityV2 = {
|
|
203
|
+
__typename?: 'ActivityV2';
|
|
204
|
+
assessment?: Maybe<Assessment>;
|
|
205
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
206
|
+
availableMiniGames?: Maybe<Array<Maybe<GameAlignment>>>;
|
|
207
|
+
awakeningActivity?: Maybe<AwakeningActivity>;
|
|
208
|
+
durationInMinutes?: Maybe<Scalars['Int']['output']>;
|
|
209
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
210
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
211
|
+
includeMiniGames?: Maybe<Scalars['Boolean']['output']>;
|
|
212
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
213
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
214
|
+
miniGame?: Maybe<Game>;
|
|
215
|
+
miniGameAssessmentQuestionCount?: Maybe<Scalars['Int']['output']>;
|
|
216
|
+
miniGameId?: Maybe<Scalars['ID']['output']>;
|
|
217
|
+
numOfQuestions?: Maybe<Scalars['Int']['output']>;
|
|
218
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
219
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
220
|
+
playerActivities?: Maybe<Array<Maybe<PlayerActivity>>>;
|
|
221
|
+
questions?: Maybe<Array<Maybe<ActivityQuestion>>>;
|
|
222
|
+
questionsType?: Maybe<Scalars['String']['output']>;
|
|
223
|
+
randomQuestionOrder?: Maybe<Scalars['Boolean']['output']>;
|
|
224
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
225
|
+
subjectId?: Maybe<Scalars['ID']['output']>;
|
|
226
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
227
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
228
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
229
|
+
video?: Maybe<Video>;
|
|
230
|
+
videoId?: Maybe<Scalars['ID']['output']>;
|
|
231
|
+
};
|
|
232
|
+
type AnalyticsEvent = {
|
|
233
|
+
__typename?: 'AnalyticsEvent';
|
|
234
|
+
directObject?: Maybe<AnalyticsObject>;
|
|
235
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
236
|
+
indirectObject?: Maybe<AnalyticsObject>;
|
|
237
|
+
prepositionalObject?: Maybe<AnalyticsObject>;
|
|
238
|
+
subject?: Maybe<AnalyticsObject>;
|
|
239
|
+
verb?: Maybe<Scalars['String']['output']>;
|
|
240
|
+
};
|
|
241
|
+
type AnalyticsEventInput = {
|
|
242
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
243
|
+
directObject?: InputMaybe<AnalyticsObjectInput>;
|
|
244
|
+
indirectObject?: InputMaybe<AnalyticsObjectInput>;
|
|
245
|
+
prepositionalObject?: InputMaybe<AnalyticsObjectInput>;
|
|
246
|
+
subject?: InputMaybe<AnalyticsObjectInput>;
|
|
247
|
+
verb?: InputMaybe<Scalars['String']['input']>;
|
|
248
|
+
};
|
|
249
|
+
type AnalyticsObject = {
|
|
250
|
+
__typename?: 'AnalyticsObject';
|
|
251
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
252
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
253
|
+
};
|
|
254
|
+
type AnalyticsObjectInput = {
|
|
255
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
256
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
257
|
+
};
|
|
258
|
+
type Answer = {
|
|
259
|
+
__typename?: 'Answer';
|
|
260
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
261
|
+
choiceNum?: Maybe<Scalars['Int']['output']>;
|
|
262
|
+
explanation?: Maybe<AnswerExplanation>;
|
|
263
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
264
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
265
|
+
};
|
|
266
|
+
type AnswerExplanation = {
|
|
267
|
+
__typename?: 'AnswerExplanation';
|
|
268
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
269
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
270
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
271
|
+
};
|
|
272
|
+
type Assessment = {
|
|
273
|
+
__typename?: 'Assessment';
|
|
274
|
+
assessmentLearningObjectives?: Maybe<Array<Maybe<AssessmentLearningObjective>>>;
|
|
275
|
+
assessmentQuestions?: Maybe<Array<Maybe<AssessmentQuestion>>>;
|
|
276
|
+
grades?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
277
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
278
|
+
languages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
279
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
280
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
281
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
282
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
283
|
+
timesPlayed?: Maybe<Scalars['Int']['output']>;
|
|
284
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
285
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
286
|
+
};
|
|
287
|
+
type AssessmentLearningObjective = {
|
|
288
|
+
__typename?: 'AssessmentLearningObjective';
|
|
289
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
290
|
+
customName?: Maybe<Scalars['String']['output']>;
|
|
291
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
292
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
293
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
294
|
+
};
|
|
295
|
+
type AssessmentQuestion = {
|
|
296
|
+
__typename?: 'AssessmentQuestion';
|
|
297
|
+
assessmentId?: Maybe<Scalars['ID']['output']>;
|
|
298
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
299
|
+
order?: Maybe<Scalars['Float']['output']>;
|
|
300
|
+
question?: Maybe<Question>;
|
|
301
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
302
|
+
};
|
|
303
|
+
type AssignedActivityBySchoolRow = {
|
|
304
|
+
__typename?: 'AssignedActivityBySchoolRow';
|
|
305
|
+
activeStudents?: Maybe<Scalars['Int']['output']>;
|
|
306
|
+
activeTeachers?: Maybe<Scalars['Int']['output']>;
|
|
307
|
+
assignments?: Maybe<Scalars['Int']['output']>;
|
|
308
|
+
gameplaysAndVideos?: Maybe<Scalars['Int']['output']>;
|
|
309
|
+
gameplaysPerActiveStudent?: Maybe<Scalars['Float']['output']>;
|
|
310
|
+
playtimeHours?: Maybe<Scalars['Float']['output']>;
|
|
311
|
+
questionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
312
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
schoolId?: Maybe<Scalars['Int']['output']>;
|
|
314
|
+
schoolPremiumStatus?: Maybe<Scalars['String']['output']>;
|
|
315
|
+
};
|
|
316
|
+
type AssignedActivityByStudentRow = {
|
|
317
|
+
__typename?: 'AssignedActivityByStudentRow';
|
|
318
|
+
completedGames?: Maybe<Scalars['Int']['output']>;
|
|
319
|
+
completedGamesAndVideos?: Maybe<Scalars['Int']['output']>;
|
|
320
|
+
completedVideos?: Maybe<Scalars['Int']['output']>;
|
|
321
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
322
|
+
schoolId?: Maybe<Scalars['Int']['output']>;
|
|
323
|
+
studentGradeBand?: Maybe<Scalars['String']['output']>;
|
|
324
|
+
studentId?: Maybe<Scalars['Int']['output']>;
|
|
325
|
+
studentName?: Maybe<Scalars['String']['output']>;
|
|
326
|
+
studentUsername?: Maybe<Scalars['String']['output']>;
|
|
327
|
+
teacherEmail?: Maybe<Scalars['String']['output']>;
|
|
328
|
+
teacherId?: Maybe<Scalars['Int']['output']>;
|
|
329
|
+
teacherName?: Maybe<Scalars['String']['output']>;
|
|
330
|
+
};
|
|
331
|
+
type AssignedActivityByTeacherRow = {
|
|
332
|
+
__typename?: 'AssignedActivityByTeacherRow';
|
|
333
|
+
activeStudents?: Maybe<Scalars['Int']['output']>;
|
|
334
|
+
assignments?: Maybe<Scalars['Int']['output']>;
|
|
335
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
336
|
+
gameplaysAndVideos?: Maybe<Scalars['Int']['output']>;
|
|
337
|
+
gameplaysPerActiveStudent?: Maybe<Scalars['Float']['output']>;
|
|
338
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
339
|
+
playtimeHours?: Maybe<Scalars['Float']['output']>;
|
|
340
|
+
questionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
341
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
342
|
+
teacherGradeLevels?: Maybe<Scalars['String']['output']>;
|
|
343
|
+
};
|
|
344
|
+
type Assignment = {
|
|
345
|
+
__typename?: 'Assignment';
|
|
346
|
+
activities?: Maybe<Array<Maybe<Activity>>>;
|
|
347
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
348
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
349
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
350
|
+
/** @deprecated Use startDate/endDate; times are derived from dates */
|
|
351
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
352
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
353
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
354
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
355
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
356
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
357
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
358
|
+
standards?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
359
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
360
|
+
/** @deprecated Use startDate/endDate; times are derived from dates */
|
|
361
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
362
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
363
|
+
};
|
|
364
|
+
type AssignmentAssignedPlayersCounts = {
|
|
365
|
+
__typename?: 'AssignmentAssignedPlayersCounts';
|
|
366
|
+
completedCount?: Maybe<Scalars['Int']['output']>;
|
|
367
|
+
joinedCount?: Maybe<Scalars['Int']['output']>;
|
|
368
|
+
studentIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
369
|
+
studentUsers?: Maybe<Array<Maybe<StudentUser>>>;
|
|
370
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
371
|
+
};
|
|
372
|
+
type AssignmentCreatedBy = {
|
|
373
|
+
__typename?: 'AssignmentCreatedBy';
|
|
374
|
+
createdByMe?: Maybe<Scalars['Boolean']['output']>;
|
|
375
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
376
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
377
|
+
teacherCode?: Maybe<Scalars['String']['output']>;
|
|
378
|
+
};
|
|
379
|
+
declare enum AssignmentOwnershipType {
|
|
380
|
+
/** Assignments created by the district and teacher */
|
|
381
|
+
All = "ALL",
|
|
382
|
+
/** Assignments created by the district */
|
|
383
|
+
District = "DISTRICT",
|
|
384
|
+
/** Assignments created by the teacher */
|
|
385
|
+
Teacher = "TEACHER"
|
|
386
|
+
}
|
|
387
|
+
type AssignmentPerformance = {
|
|
388
|
+
__typename?: 'AssignmentPerformance';
|
|
389
|
+
assignmentsJoined?: Maybe<Scalars['Int']['output']>;
|
|
390
|
+
playerAssignments?: Maybe<Array<Maybe<AssignmentPerformancePlayerAssignment>>>;
|
|
391
|
+
questionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
392
|
+
questionsCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
393
|
+
};
|
|
394
|
+
type AssignmentPerformancePlayerAssignment = {
|
|
395
|
+
__typename?: 'AssignmentPerformancePlayerAssignment';
|
|
396
|
+
assignment?: Maybe<AssignmentV2>;
|
|
397
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
398
|
+
playerActivities?: Maybe<Array<Maybe<PlayerActivity>>>;
|
|
399
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
400
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
401
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
402
|
+
};
|
|
403
|
+
type AssignmentSet = {
|
|
404
|
+
__typename?: 'AssignmentSet';
|
|
405
|
+
active: Scalars['Boolean']['output'];
|
|
406
|
+
assignments?: Maybe<Array<Maybe<AssignmentSetAssignment>>>;
|
|
407
|
+
computedStatus: Scalars['String']['output'];
|
|
408
|
+
createdAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
409
|
+
createdBy: User;
|
|
410
|
+
createdById: Scalars['ID']['output'];
|
|
411
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
412
|
+
grades?: Maybe<Array<Maybe<AssignmentSetGrade>>>;
|
|
413
|
+
id: Scalars['ID']['output'];
|
|
414
|
+
insertedAt: Scalars['NaiveDateTime']['output'];
|
|
415
|
+
name: Scalars['String']['output'];
|
|
416
|
+
policy?: Maybe<AbacPolicy>;
|
|
417
|
+
standards?: Maybe<Array<Maybe<AssignmentSetStandard>>>;
|
|
418
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
419
|
+
/** @deprecated Use startDate/endDate */
|
|
420
|
+
startTime?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
421
|
+
status: Scalars['String']['output'];
|
|
422
|
+
updatedAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
423
|
+
};
|
|
424
|
+
type AssignmentSetAssignment = {
|
|
425
|
+
__typename?: 'AssignmentSetAssignment';
|
|
426
|
+
assignment: Assignment;
|
|
427
|
+
assignmentId: Scalars['ID']['output'];
|
|
428
|
+
assignmentSetId: Scalars['ID']['output'];
|
|
429
|
+
order: Scalars['Float']['output'];
|
|
430
|
+
};
|
|
431
|
+
type AssignmentSetAssignmentWithTeacher = {
|
|
432
|
+
__typename?: 'AssignmentSetAssignmentWithTeacher';
|
|
433
|
+
assignment?: Maybe<AssignmentV2>;
|
|
434
|
+
assignmentId: Scalars['ID']['output'];
|
|
435
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
436
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
437
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
438
|
+
teacher?: Maybe<TeacherForAssignmentSet>;
|
|
439
|
+
teacherId?: Maybe<Scalars['ID']['output']>;
|
|
440
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
441
|
+
};
|
|
442
|
+
type AssignmentSetAssignmentsWithTeachers = {
|
|
443
|
+
__typename?: 'AssignmentSetAssignmentsWithTeachers';
|
|
444
|
+
assignmentSet?: Maybe<AssignmentSet>;
|
|
445
|
+
assignmentSetId: Scalars['ID']['output'];
|
|
446
|
+
assignments?: Maybe<Array<Maybe<AssignmentSetAssignmentWithTeacher>>>;
|
|
447
|
+
eligibleTeachers?: Maybe<Array<Maybe<TeacherForAssignmentSet>>>;
|
|
448
|
+
totalAssignments?: Maybe<Scalars['Int']['output']>;
|
|
449
|
+
totalTeachers?: Maybe<Scalars['Int']['output']>;
|
|
450
|
+
};
|
|
451
|
+
type AssignmentSetGrade = {
|
|
452
|
+
__typename?: 'AssignmentSetGrade';
|
|
453
|
+
assignmentSetId: Scalars['ID']['output'];
|
|
454
|
+
grade: Scalars['Int']['output'];
|
|
455
|
+
};
|
|
456
|
+
type AssignmentSetList = {
|
|
457
|
+
__typename?: 'AssignmentSetList';
|
|
458
|
+
entries?: Maybe<Array<Maybe<AssignmentSet>>>;
|
|
459
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
460
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
461
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
462
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
463
|
+
};
|
|
464
|
+
type AssignmentSetPublishJob = {
|
|
465
|
+
__typename?: 'AssignmentSetPublishJob';
|
|
466
|
+
currentlyPublishedTeachersCount: Scalars['Int']['output'];
|
|
467
|
+
id: Scalars['ID']['output'];
|
|
468
|
+
publishedAssignmentSetId?: Maybe<Scalars['ID']['output']>;
|
|
469
|
+
status: Scalars['String']['output'];
|
|
470
|
+
totalNumberOfTeachers: Scalars['Int']['output'];
|
|
471
|
+
};
|
|
472
|
+
declare enum AssignmentSetSortType {
|
|
473
|
+
/** The created at date of the assignment set */
|
|
474
|
+
CreatedAt = "CREATED_AT",
|
|
475
|
+
/** The grade of the assignment set */
|
|
476
|
+
Grade = "GRADE",
|
|
477
|
+
/** The name of the assignment set */
|
|
478
|
+
Name = "NAME",
|
|
479
|
+
/** The start date of the assignment set */
|
|
480
|
+
StartDate = "START_DATE",
|
|
481
|
+
/** The status of the assignment set (live, scheduled, draft, completed) */
|
|
482
|
+
Status = "STATUS",
|
|
483
|
+
/** The subject of the assignment set */
|
|
484
|
+
Subject = "SUBJECT",
|
|
485
|
+
/** The updated at date of the assignment set */
|
|
486
|
+
UpdatedAt = "UPDATED_AT"
|
|
487
|
+
}
|
|
488
|
+
type AssignmentSetStandard = {
|
|
489
|
+
__typename?: 'AssignmentSetStandard';
|
|
490
|
+
assignmentSetId: Scalars['ID']['output'];
|
|
491
|
+
setStandard: Standard;
|
|
492
|
+
standard: Scalars['String']['output'];
|
|
493
|
+
};
|
|
494
|
+
/** Sharing information to the sharing owner */
|
|
495
|
+
type AssignmentShare = {
|
|
496
|
+
__typename?: 'AssignmentShare';
|
|
497
|
+
assignment?: Maybe<AssignmentV2>;
|
|
498
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
499
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
500
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
501
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
502
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
503
|
+
publicCode?: Maybe<Scalars['String']['output']>;
|
|
504
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
505
|
+
};
|
|
506
|
+
/** Sharing details for assignments created by sharing code */
|
|
507
|
+
type AssignmentSharingSource = {
|
|
508
|
+
__typename?: 'AssignmentSharingSource';
|
|
509
|
+
assignment?: Maybe<Scalars['String']['output']>;
|
|
510
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
511
|
+
};
|
|
512
|
+
type AssignmentV2 = {
|
|
513
|
+
__typename?: 'AssignmentV2';
|
|
514
|
+
activities?: Maybe<Array<Maybe<ActivityV2>>>;
|
|
515
|
+
assignedPlayersCounts?: Maybe<AssignmentAssignedPlayersCounts>;
|
|
516
|
+
autoStart?: Maybe<Scalars['Boolean']['output']>;
|
|
517
|
+
awakeningAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
518
|
+
basicGameplayer?: Maybe<Scalars['Boolean']['output']>;
|
|
519
|
+
createdBy?: Maybe<AssignmentCreatedBy>;
|
|
520
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
521
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
522
|
+
durationDays?: Maybe<Scalars['Int']['output']>;
|
|
523
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
524
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
525
|
+
groups?: Maybe<Array<Maybe<Group>>>;
|
|
526
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
527
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
528
|
+
initialLearningObjective?: Maybe<LearningObjective>;
|
|
529
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
530
|
+
multiLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
531
|
+
mutedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
532
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
533
|
+
numPlayers?: Maybe<Scalars['Int']['output']>;
|
|
534
|
+
ownedBy?: Maybe<AssignmentOwnershipType>;
|
|
535
|
+
pausedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
536
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
537
|
+
playerAssignments?: Maybe<PlayerAssignmentList>;
|
|
538
|
+
playersCompleteCount?: Maybe<Scalars['Int']['output']>;
|
|
539
|
+
playersJoinCount?: Maybe<Scalars['Int']['output']>;
|
|
540
|
+
playersTotalCount?: Maybe<Scalars['Int']['output']>;
|
|
541
|
+
share?: Maybe<AssignmentShare>;
|
|
542
|
+
sharingSource?: Maybe<AssignmentSharingSource>;
|
|
543
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
544
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
545
|
+
startDayOffset?: Maybe<Scalars['Int']['output']>;
|
|
546
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
547
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
548
|
+
stoppedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
549
|
+
totalAnswered?: Maybe<Scalars['Float']['output']>;
|
|
550
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Float']['output']>;
|
|
551
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
552
|
+
};
|
|
553
|
+
type AssignmentV2AssignedPlayersCountsArgs = {
|
|
554
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
555
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
556
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
557
|
+
};
|
|
558
|
+
type AssignmentV2PlayerAssignmentsArgs = {
|
|
559
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
560
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
561
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
562
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
563
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
564
|
+
};
|
|
565
|
+
type Audience = {
|
|
566
|
+
__typename?: 'Audience';
|
|
567
|
+
g1?: Maybe<Scalars['Boolean']['output']>;
|
|
568
|
+
g2?: Maybe<Scalars['Boolean']['output']>;
|
|
569
|
+
g3?: Maybe<Scalars['Boolean']['output']>;
|
|
570
|
+
g4?: Maybe<Scalars['Boolean']['output']>;
|
|
571
|
+
g5?: Maybe<Scalars['Boolean']['output']>;
|
|
572
|
+
g6?: Maybe<Scalars['Boolean']['output']>;
|
|
573
|
+
g7?: Maybe<Scalars['Boolean']['output']>;
|
|
574
|
+
g8?: Maybe<Scalars['Boolean']['output']>;
|
|
575
|
+
g9?: Maybe<Scalars['Boolean']['output']>;
|
|
576
|
+
g10?: Maybe<Scalars['Boolean']['output']>;
|
|
577
|
+
g11?: Maybe<Scalars['Boolean']['output']>;
|
|
578
|
+
g12?: Maybe<Scalars['Boolean']['output']>;
|
|
579
|
+
k?: Maybe<Scalars['Boolean']['output']>;
|
|
580
|
+
};
|
|
581
|
+
type Avatar = {
|
|
582
|
+
__typename?: 'Avatar';
|
|
583
|
+
fullAvatarSmallUrl?: Maybe<Scalars['String']['output']>;
|
|
584
|
+
fullAvatarUrl?: Maybe<Scalars['String']['output']>;
|
|
585
|
+
headshotUrl?: Maybe<Scalars['String']['output']>;
|
|
586
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
587
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
588
|
+
};
|
|
589
|
+
type AwakeningActivity = {
|
|
590
|
+
__typename?: 'AwakeningActivity';
|
|
591
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
592
|
+
playDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
593
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
594
|
+
};
|
|
595
|
+
type AwakeningActivityBySchoolRow = {
|
|
596
|
+
__typename?: 'AwakeningActivityBySchoolRow';
|
|
597
|
+
activeStudents?: Maybe<Scalars['Int']['output']>;
|
|
598
|
+
gameplaysAndVideos?: Maybe<Scalars['Int']['output']>;
|
|
599
|
+
playtimeHours?: Maybe<Scalars['Float']['output']>;
|
|
600
|
+
questionsAnswered?: Maybe<Scalars['Int']['output']>;
|
|
601
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
602
|
+
};
|
|
603
|
+
type Breadcrumb = {
|
|
604
|
+
__typename?: 'Breadcrumb';
|
|
605
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
606
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
607
|
+
scope?: Maybe<Scalars['String']['output']>;
|
|
608
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
609
|
+
};
|
|
610
|
+
type CheckAnswerResult = {
|
|
611
|
+
__typename?: 'CheckAnswerResult';
|
|
612
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
613
|
+
answersMap?: Maybe<Scalars['String']['output']>;
|
|
614
|
+
answersMapGraded?: Maybe<Scalars['String']['output']>;
|
|
615
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
616
|
+
questionId: Scalars['ID']['output'];
|
|
617
|
+
questionScoreCard?: Maybe<Scalars['String']['output']>;
|
|
618
|
+
};
|
|
619
|
+
type Concept = {
|
|
620
|
+
__typename?: 'Concept';
|
|
621
|
+
concept?: Maybe<Scalars['String']['output']>;
|
|
622
|
+
conceptIdent?: Maybe<Scalars['String']['output']>;
|
|
623
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
624
|
+
};
|
|
625
|
+
type CopyAssignmentsResult = {
|
|
626
|
+
__typename?: 'CopyAssignmentsResult';
|
|
627
|
+
copiedAssignments?: Maybe<Array<Maybe<AssignmentV2>>>;
|
|
628
|
+
copiedCount: Scalars['Int']['output'];
|
|
629
|
+
};
|
|
630
|
+
type CountResult = {
|
|
631
|
+
__typename?: 'CountResult';
|
|
632
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
633
|
+
};
|
|
634
|
+
type DeleteSchoolAdminResult = {
|
|
635
|
+
__typename?: 'DeleteSchoolAdminResult';
|
|
636
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
637
|
+
success: Scalars['Boolean']['output'];
|
|
638
|
+
};
|
|
639
|
+
type DeleteSubscriptionResult = {
|
|
640
|
+
__typename?: 'DeleteSubscriptionResult';
|
|
641
|
+
id: Scalars['ID']['output'];
|
|
642
|
+
};
|
|
643
|
+
type District = {
|
|
644
|
+
__typename?: 'District';
|
|
645
|
+
accountConfigSummary?: Maybe<DistrictAccountConfigSummary>;
|
|
646
|
+
district?: Maybe<Scalars['String']['output']>;
|
|
647
|
+
districtPlaytimeLimit?: Maybe<DistrictPlaytimeLimit>;
|
|
648
|
+
districtRegionsCount: Scalars['Int']['output'];
|
|
649
|
+
districtSchoolsCount: Scalars['Int']['output'];
|
|
650
|
+
districtTeachersCount: Scalars['Int']['output'];
|
|
651
|
+
effectiveSetting?: Maybe<DistrictSetting>;
|
|
652
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
653
|
+
ncesDistrictId?: Maybe<Scalars['String']['output']>;
|
|
654
|
+
playtimeLimit: PlaytimeLimit;
|
|
655
|
+
playtimeThisYearSecs: Scalars['Int']['output'];
|
|
656
|
+
schools?: Maybe<Array<Maybe<School>>>;
|
|
657
|
+
state?: Maybe<State>;
|
|
658
|
+
subscriptions?: Maybe<Array<Maybe<SubscriberSubscription>>>;
|
|
659
|
+
};
|
|
660
|
+
type DistrictAccountConfigSummary = {
|
|
661
|
+
__typename?: 'DistrictAccountConfigSummary';
|
|
662
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
663
|
+
hasCanvas?: Maybe<Scalars['Boolean']['output']>;
|
|
664
|
+
hasClasslink?: Maybe<Scalars['Boolean']['output']>;
|
|
665
|
+
hasClever?: Maybe<Scalars['Boolean']['output']>;
|
|
666
|
+
hasOneRoster?: Maybe<Scalars['Boolean']['output']>;
|
|
667
|
+
hasSchoology?: Maybe<Scalars['Boolean']['output']>;
|
|
668
|
+
};
|
|
669
|
+
type DistrictPlaytimeLimit = {
|
|
670
|
+
__typename?: 'DistrictPlaytimeLimit';
|
|
671
|
+
districtId: Scalars['ID']['output'];
|
|
672
|
+
durationS?: Maybe<Scalars['Int']['output']>;
|
|
673
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
674
|
+
id: Scalars['ID']['output'];
|
|
675
|
+
isEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
676
|
+
};
|
|
677
|
+
type DistrictRegion = {
|
|
678
|
+
__typename?: 'DistrictRegion';
|
|
679
|
+
district?: Maybe<District>;
|
|
680
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
681
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
682
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
683
|
+
schools?: Maybe<Array<Maybe<School>>>;
|
|
684
|
+
users?: Maybe<Array<Maybe<ListingUser>>>;
|
|
685
|
+
};
|
|
686
|
+
type DistrictRegionsList = {
|
|
687
|
+
__typename?: 'DistrictRegionsList';
|
|
688
|
+
entries?: Maybe<Array<Maybe<DistrictRegion>>>;
|
|
689
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
690
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
691
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
692
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
693
|
+
};
|
|
694
|
+
type DistrictSetting = {
|
|
695
|
+
__typename?: 'DistrictSetting';
|
|
696
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
697
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
698
|
+
isSubscriptionAutoRenew?: Maybe<Scalars['Boolean']['output']>;
|
|
699
|
+
paidExpiresAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
700
|
+
};
|
|
701
|
+
type DistrictsList = {
|
|
702
|
+
__typename?: 'DistrictsList';
|
|
703
|
+
entries?: Maybe<Array<Maybe<District>>>;
|
|
704
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
705
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
706
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
707
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
708
|
+
};
|
|
709
|
+
type EndImpersonationResult = {
|
|
710
|
+
__typename?: 'EndImpersonationResult';
|
|
711
|
+
adminUserName?: Maybe<Scalars['String']['output']>;
|
|
712
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
713
|
+
originalSessionId?: Maybe<Scalars['String']['output']>;
|
|
714
|
+
success: Scalars['Boolean']['output'];
|
|
715
|
+
};
|
|
716
|
+
type FeatureFlagVariant = {
|
|
717
|
+
__typename?: 'FeatureFlagVariant';
|
|
718
|
+
name: Scalars['String']['output'];
|
|
719
|
+
value: Scalars['String']['output'];
|
|
720
|
+
};
|
|
721
|
+
type Filter = {
|
|
722
|
+
cmp?: InputMaybe<Scalars['String']['input']>;
|
|
723
|
+
field?: InputMaybe<Scalars['String']['input']>;
|
|
724
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
725
|
+
valueArrayString?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
726
|
+
valueBoolean?: InputMaybe<Scalars['Boolean']['input']>;
|
|
727
|
+
};
|
|
728
|
+
type FluencyDailySummaryByPlayer = {
|
|
729
|
+
__typename?: 'FluencyDailySummaryByPlayer';
|
|
730
|
+
assessFluentCount?: Maybe<Scalars['Int']['output']>;
|
|
731
|
+
correctCount?: Maybe<Scalars['Int']['output']>;
|
|
732
|
+
gainCount?: Maybe<Scalars['Int']['output']>;
|
|
733
|
+
lossCount?: Maybe<Scalars['Int']['output']>;
|
|
734
|
+
masteredCount?: Maybe<Scalars['Int']['output']>;
|
|
735
|
+
playDate?: Maybe<Scalars['Date']['output']>;
|
|
736
|
+
playerUserId?: Maybe<Scalars['Int']['output']>;
|
|
737
|
+
successCount?: Maybe<Scalars['Int']['output']>;
|
|
738
|
+
totalElapsedTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
739
|
+
};
|
|
740
|
+
type FluencyFocus = {
|
|
741
|
+
__typename?: 'FluencyFocus';
|
|
742
|
+
assessedFactsCount: Scalars['Int']['output'];
|
|
743
|
+
completeFluencySessionsCount: Scalars['Int']['output'];
|
|
744
|
+
fluencyGainFactsCount: Scalars['Int']['output'];
|
|
745
|
+
fluentFactsCount: Scalars['Int']['output'];
|
|
746
|
+
focus: FluencyFocusType;
|
|
747
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
748
|
+
initialAssessmentFluentFactsCount: Scalars['Int']['output'];
|
|
749
|
+
instructorUser: FluencyInstructor;
|
|
750
|
+
lastFluencyTrialTime?: Maybe<Scalars['DateTime']['output']>;
|
|
751
|
+
playerUser: FluencyPlayer;
|
|
752
|
+
playerUserId: Scalars['ID']['output'];
|
|
753
|
+
totalFactsCount: Scalars['Int']['output'];
|
|
754
|
+
totalFluencySessionsCount: Scalars['Int']['output'];
|
|
755
|
+
totalUsageTimeMs: Scalars['Int']['output'];
|
|
756
|
+
};
|
|
757
|
+
declare enum FluencyFocusType {
|
|
758
|
+
/** Addition and subtraction from 0 - 5 */
|
|
759
|
+
Add5 = "ADD5",
|
|
760
|
+
/** Addition and subtraction from 0 - 9 */
|
|
761
|
+
Add9 = "ADD9",
|
|
762
|
+
/** Addition and subtraction from 0 - 10 */
|
|
763
|
+
Add10 = "ADD10",
|
|
764
|
+
/** Multiplication and division from 0 - 9 */
|
|
765
|
+
Mul9 = "MUL9",
|
|
766
|
+
/** Multiplication and division from 0 - 10 */
|
|
767
|
+
Mul10 = "MUL10",
|
|
768
|
+
/** Multiplication and division from 0 - 10 */
|
|
769
|
+
Mul12 = "MUL12"
|
|
770
|
+
}
|
|
771
|
+
type FluencyGrowthPeriod = {
|
|
772
|
+
__typename?: 'FluencyGrowthPeriod';
|
|
773
|
+
activePlayersCount?: Maybe<Scalars['Int']['output']>;
|
|
774
|
+
cumulativeNetFluentFactsCount?: Maybe<Scalars['Int']['output']>;
|
|
775
|
+
netGainFactsCount?: Maybe<Scalars['Int']['output']>;
|
|
776
|
+
time?: Maybe<Scalars['Date']['output']>;
|
|
777
|
+
};
|
|
778
|
+
type FluencyInstructor = {
|
|
779
|
+
__typename?: 'FluencyInstructor';
|
|
780
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
781
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
782
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
783
|
+
playerAvatar?: Maybe<PlayerAvatar>;
|
|
784
|
+
};
|
|
785
|
+
type FluencyPlayer = {
|
|
786
|
+
__typename?: 'FluencyPlayer';
|
|
787
|
+
currentSignInAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
788
|
+
fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
|
|
789
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
790
|
+
student?: Maybe<FluencyStudent>;
|
|
791
|
+
};
|
|
792
|
+
type FluencyPlayerFluencySessionsArgs = {
|
|
793
|
+
filter?: InputMaybe<FluencySessionFilter>;
|
|
794
|
+
};
|
|
795
|
+
type FluencyPlayerDistribution = {
|
|
796
|
+
__typename?: 'FluencyPlayerDistribution';
|
|
797
|
+
assessFluentP25: Scalars['Int']['output'];
|
|
798
|
+
assessFluentP50: Scalars['Int']['output'];
|
|
799
|
+
assessFluentP75: Scalars['Int']['output'];
|
|
800
|
+
assessFluentP90: Scalars['Int']['output'];
|
|
801
|
+
assessFluentP100: Scalars['Int']['output'];
|
|
802
|
+
fluentP25: Scalars['Int']['output'];
|
|
803
|
+
fluentP50: Scalars['Int']['output'];
|
|
804
|
+
fluentP75: Scalars['Int']['output'];
|
|
805
|
+
fluentP90: Scalars['Int']['output'];
|
|
806
|
+
fluentP100: Scalars['Int']['output'];
|
|
807
|
+
};
|
|
808
|
+
type FluencyReportFilter = {
|
|
809
|
+
districtId?: InputMaybe<Scalars['ID']['input']>;
|
|
810
|
+
endDate: Scalars['Date']['input'];
|
|
811
|
+
organizationType: FluencyReportOrganizationType;
|
|
812
|
+
schoolId?: InputMaybe<Scalars['ID']['input']>;
|
|
813
|
+
startDate: Scalars['Date']['input'];
|
|
814
|
+
};
|
|
815
|
+
declare enum FluencyReportOrganizationType {
|
|
816
|
+
/** Show all data */
|
|
817
|
+
All = "ALL",
|
|
818
|
+
/** Filter data by district */
|
|
819
|
+
District = "DISTRICT",
|
|
820
|
+
/** Filter data by school */
|
|
821
|
+
School = "SCHOOL"
|
|
822
|
+
}
|
|
823
|
+
type FluencySession = {
|
|
824
|
+
__typename?: 'FluencySession';
|
|
825
|
+
blueLightPercent: Scalars['Int']['output'];
|
|
826
|
+
id: Scalars['ID']['output'];
|
|
827
|
+
masteredTargetFactsCount: Scalars['Int']['output'];
|
|
828
|
+
startTime: Scalars['DateTime']['output'];
|
|
829
|
+
totalTargetFactsCount: Scalars['Int']['output'];
|
|
830
|
+
};
|
|
831
|
+
type FluencySessionFilter = {
|
|
832
|
+
startTimeAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
833
|
+
};
|
|
834
|
+
type FluencySessionsCount = {
|
|
835
|
+
__typename?: 'FluencySessionsCount';
|
|
836
|
+
completedCount: Scalars['Int']['output'];
|
|
837
|
+
totalCount: Scalars['Int']['output'];
|
|
838
|
+
};
|
|
839
|
+
type FluencyStudent = {
|
|
840
|
+
__typename?: 'FluencyStudent';
|
|
841
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
842
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
843
|
+
lastInitial?: Maybe<Scalars['String']['output']>;
|
|
844
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
845
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
846
|
+
};
|
|
847
|
+
type FluencyTrialsCount = {
|
|
848
|
+
__typename?: 'FluencyTrialsCount';
|
|
849
|
+
assessFluentCount: Scalars['Int']['output'];
|
|
850
|
+
fluentCount: Scalars['Int']['output'];
|
|
851
|
+
totalCount: Scalars['Int']['output'];
|
|
852
|
+
};
|
|
853
|
+
type FluencyTrialsMedianStudentReport = {
|
|
854
|
+
__typename?: 'FluencyTrialsMedianStudentReport';
|
|
855
|
+
netGainFactsCount: Scalars['Int']['output'];
|
|
856
|
+
totalElapsedTimeMs: Scalars['Int']['output'];
|
|
857
|
+
};
|
|
858
|
+
type Game = {
|
|
859
|
+
__typename?: 'Game';
|
|
860
|
+
audience?: Maybe<Audience>;
|
|
861
|
+
banner?: Maybe<Scalars['String']['output']>;
|
|
862
|
+
clonedFromGameId?: Maybe<Scalars['Int']['output']>;
|
|
863
|
+
comingSoon?: Maybe<Scalars['Boolean']['output']>;
|
|
864
|
+
conceptAlignedQuestions?: Maybe<Array<Maybe<Question>>>;
|
|
865
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
866
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
867
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
868
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
869
|
+
developerDescription?: Maybe<Scalars['String']['output']>;
|
|
870
|
+
developerInstructions?: Maybe<Scalars['String']['output']>;
|
|
871
|
+
discussionQuestionsAfter?: Maybe<Scalars['String']['output']>;
|
|
872
|
+
discussionQuestionsBefore?: Maybe<Scalars['String']['output']>;
|
|
873
|
+
editorPickAt?: Maybe<Scalars['DateTime']['output']>;
|
|
874
|
+
estimatedDuration?: Maybe<Scalars['Int']['output']>;
|
|
875
|
+
game?: Maybe<Scalars['String']['output']>;
|
|
876
|
+
gameDeveloperId?: Maybe<Scalars['Int']['output']>;
|
|
877
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
878
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
879
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
880
|
+
isAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
881
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
882
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
883
|
+
lexileLevel?: Maybe<Scalars['Int']['output']>;
|
|
884
|
+
multiLanguage?: Maybe<Scalars['Boolean']['output']>;
|
|
885
|
+
paidOut?: Maybe<Scalars['Boolean']['output']>;
|
|
886
|
+
pdfUrl?: Maybe<Scalars['String']['output']>;
|
|
887
|
+
questionGame?: Maybe<Scalars['Boolean']['output']>;
|
|
888
|
+
savesProgress?: Maybe<Scalars['Boolean']['output']>;
|
|
889
|
+
shortName?: Maybe<Scalars['String']['output']>;
|
|
890
|
+
sponsorshipImageUrl?: Maybe<Scalars['String']['output']>;
|
|
891
|
+
sponsorshipLinkUrl?: Maybe<Scalars['String']['output']>;
|
|
892
|
+
stat?: Maybe<GameStat>;
|
|
893
|
+
supportsIpad?: Maybe<Scalars['Boolean']['output']>;
|
|
894
|
+
supportsSpanish?: Maybe<Scalars['Boolean']['output']>;
|
|
895
|
+
supportsTts?: Maybe<Scalars['Boolean']['output']>;
|
|
896
|
+
teacherFacingPdfUrl?: Maybe<Scalars['String']['output']>;
|
|
897
|
+
teacherReviews?: Maybe<GameReviewsList>;
|
|
898
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
899
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
900
|
+
version?: Maybe<GameVersion>;
|
|
901
|
+
video?: Maybe<Scalars['String']['output']>;
|
|
902
|
+
videoPreviewUrl?: Maybe<Scalars['String']['output']>;
|
|
903
|
+
vocabulary?: Maybe<Scalars['String']['output']>;
|
|
904
|
+
};
|
|
905
|
+
type GameConceptAlignedQuestionsArgs = {
|
|
906
|
+
learningObjectiveId: Scalars['ID']['input'];
|
|
907
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
908
|
+
};
|
|
909
|
+
type GameLearningObjectivesArgs = {
|
|
910
|
+
standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
911
|
+
};
|
|
912
|
+
type GameTeacherReviewsArgs = {
|
|
913
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
914
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
915
|
+
};
|
|
916
|
+
type GameAlignment = {
|
|
917
|
+
__typename?: 'GameAlignment';
|
|
918
|
+
game?: Maybe<Game>;
|
|
919
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
920
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
921
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
922
|
+
};
|
|
923
|
+
type GameReview = {
|
|
924
|
+
__typename?: 'GameReview';
|
|
925
|
+
checkAlignment?: Maybe<Scalars['Boolean']['output']>;
|
|
926
|
+
checkEngagement?: Maybe<Scalars['Boolean']['output']>;
|
|
927
|
+
checkFriendlyness?: Maybe<Scalars['Boolean']['output']>;
|
|
928
|
+
checkIssuesFree?: Maybe<Scalars['Boolean']['output']>;
|
|
929
|
+
contentIntegration?: Maybe<Scalars['Int']['output']>;
|
|
930
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
931
|
+
criticalThinkingLevel?: Maybe<Scalars['Int']['output']>;
|
|
932
|
+
easeOfPlay?: Maybe<Scalars['Int']['output']>;
|
|
933
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
934
|
+
manuallyApproved?: Maybe<Scalars['Boolean']['output']>;
|
|
935
|
+
pointsEarned?: Maybe<Scalars['Int']['output']>;
|
|
936
|
+
ratingEffectiveness?: Maybe<Scalars['Int']['output']>;
|
|
937
|
+
ratingEngagement?: Maybe<Scalars['Int']['output']>;
|
|
938
|
+
ratingInstructionClarity?: Maybe<Scalars['Int']['output']>;
|
|
939
|
+
ratingStability?: Maybe<Scalars['Int']['output']>;
|
|
940
|
+
review?: Maybe<Scalars['String']['output']>;
|
|
941
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
942
|
+
suggestedUse?: Maybe<Scalars['String']['output']>;
|
|
943
|
+
suggestions?: Maybe<Scalars['String']['output']>;
|
|
944
|
+
teacherName?: Maybe<Scalars['String']['output']>;
|
|
945
|
+
testerDisplayName?: Maybe<Scalars['String']['output']>;
|
|
946
|
+
totalPoints?: Maybe<Scalars['Int']['output']>;
|
|
947
|
+
upvotesCount?: Maybe<Scalars['Int']['output']>;
|
|
948
|
+
userHasUpvoted?: Maybe<Scalars['Boolean']['output']>;
|
|
949
|
+
};
|
|
950
|
+
type GameReviewsList = {
|
|
951
|
+
__typename?: 'GameReviewsList';
|
|
952
|
+
entries?: Maybe<Array<Maybe<GameReview>>>;
|
|
953
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
954
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
955
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
956
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
957
|
+
};
|
|
958
|
+
type GameStat = {
|
|
959
|
+
__typename?: 'GameStat';
|
|
960
|
+
compositeRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
961
|
+
compositeRatingScore?: Maybe<Scalars['Float']['output']>;
|
|
962
|
+
contentIntegrationAvg?: Maybe<Scalars['Float']['output']>;
|
|
963
|
+
easeOfPlayAvg?: Maybe<Scalars['Float']['output']>;
|
|
964
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
965
|
+
studentRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
966
|
+
studentRatingCount?: Maybe<Scalars['Float']['output']>;
|
|
967
|
+
studentRatingScoreSummary?: Maybe<Scalars['String']['output']>;
|
|
968
|
+
suggestedUseSummary?: Maybe<Scalars['String']['output']>;
|
|
969
|
+
teacherRatingAvg?: Maybe<Scalars['Float']['output']>;
|
|
970
|
+
teacherRatingCount?: Maybe<Scalars['Float']['output']>;
|
|
971
|
+
teacherRatingScoreSummary?: Maybe<Scalars['String']['output']>;
|
|
972
|
+
};
|
|
973
|
+
type GameVersion = {
|
|
974
|
+
__typename?: 'GameVersion';
|
|
975
|
+
acceptedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
976
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
977
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
978
|
+
gameId?: Maybe<Scalars['ID']['output']>;
|
|
979
|
+
gameType?: Maybe<Scalars['String']['output']>;
|
|
980
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
981
|
+
languageKey?: Maybe<Scalars['String']['output']>;
|
|
982
|
+
releaseNotes?: Maybe<Scalars['String']['output']>;
|
|
983
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
984
|
+
};
|
|
985
|
+
type GamesList = {
|
|
986
|
+
__typename?: 'GamesList';
|
|
987
|
+
entries?: Maybe<Array<Maybe<Game>>>;
|
|
988
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
989
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
990
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
991
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
992
|
+
};
|
|
993
|
+
type Grade = {
|
|
994
|
+
__typename?: 'Grade';
|
|
995
|
+
grade?: Maybe<Scalars['String']['output']>;
|
|
996
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
997
|
+
};
|
|
998
|
+
type Group = {
|
|
999
|
+
__typename?: 'Group';
|
|
1000
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
1001
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1002
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1003
|
+
externalLinks?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1004
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1005
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1006
|
+
numberOfStudents?: Maybe<Scalars['Int']['output']>;
|
|
1007
|
+
students?: Maybe<Array<Student>>;
|
|
1008
|
+
teacher?: Maybe<Teacher>;
|
|
1009
|
+
teacherId?: Maybe<Scalars['ID']['output']>;
|
|
1010
|
+
teachers?: Maybe<Array<Maybe<Teacher>>>;
|
|
1011
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1012
|
+
};
|
|
1013
|
+
type Header = {
|
|
1014
|
+
__typename?: 'Header';
|
|
1015
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
1016
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
1017
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1018
|
+
};
|
|
1019
|
+
type Image = {
|
|
1020
|
+
__typename?: 'Image';
|
|
1021
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
1022
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1023
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1024
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
1025
|
+
};
|
|
1026
|
+
type ImpersonationInfo = {
|
|
1027
|
+
__typename?: 'ImpersonationInfo';
|
|
1028
|
+
adminEmail?: Maybe<Scalars['String']['output']>;
|
|
1029
|
+
adminName?: Maybe<Scalars['String']['output']>;
|
|
1030
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1031
|
+
impersonatedEmail?: Maybe<Scalars['String']['output']>;
|
|
1032
|
+
impersonatedName?: Maybe<Scalars['String']['output']>;
|
|
1033
|
+
isImpersonating: Scalars['Boolean']['output'];
|
|
1034
|
+
};
|
|
1035
|
+
type ImpersonationResult = {
|
|
1036
|
+
__typename?: 'ImpersonationResult';
|
|
1037
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
1038
|
+
impersonatedSessionId?: Maybe<Scalars['String']['output']>;
|
|
1039
|
+
impersonatedUserEmail?: Maybe<Scalars['String']['output']>;
|
|
1040
|
+
impersonatedUserName?: Maybe<Scalars['String']['output']>;
|
|
1041
|
+
impersonatedUserRole?: Maybe<Scalars['String']['output']>;
|
|
1042
|
+
success: Scalars['Boolean']['output'];
|
|
1043
|
+
};
|
|
1044
|
+
type Language = {
|
|
1045
|
+
__typename?: 'Language';
|
|
1046
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1047
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1048
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1049
|
+
};
|
|
1050
|
+
type LearningObjective = {
|
|
1051
|
+
__typename?: 'LearningObjective';
|
|
1052
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
1053
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1054
|
+
gameCount?: Maybe<Scalars['Int']['output']>;
|
|
1055
|
+
games?: Maybe<GamesList>;
|
|
1056
|
+
grades?: Maybe<Array<Maybe<Grade>>>;
|
|
1057
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1058
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
1059
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
1060
|
+
learningObjective?: Maybe<Scalars['String']['output']>;
|
|
1061
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1062
|
+
ngssDciName?: Maybe<Scalars['String']['output']>;
|
|
1063
|
+
questionCount?: Maybe<Scalars['Int']['output']>;
|
|
1064
|
+
questions?: Maybe<Array<Maybe<Question>>>;
|
|
1065
|
+
sortOrder?: Maybe<Scalars['String']['output']>;
|
|
1066
|
+
standardCode?: Maybe<Scalars['String']['output']>;
|
|
1067
|
+
subject?: Maybe<Subject>;
|
|
1068
|
+
};
|
|
1069
|
+
type LearningObjectiveGamesArgs = {
|
|
1070
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1071
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1072
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1073
|
+
};
|
|
1074
|
+
type LearningObjectiveQuestionsArgs = {
|
|
1075
|
+
dok?: InputMaybe<Scalars['Int']['input']>;
|
|
1076
|
+
format?: InputMaybe<Scalars['String']['input']>;
|
|
1077
|
+
hasImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1078
|
+
};
|
|
1079
|
+
type LearningObjectiveUnit = {
|
|
1080
|
+
__typename?: 'LearningObjectiveUnit';
|
|
1081
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1082
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
1083
|
+
learningObjectiveId?: Maybe<Scalars['Int']['output']>;
|
|
1084
|
+
standardUnitId?: Maybe<Scalars['Int']['output']>;
|
|
1085
|
+
};
|
|
1086
|
+
type LearningObjectivesList = {
|
|
1087
|
+
__typename?: 'LearningObjectivesList';
|
|
1088
|
+
entries?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
1089
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
1090
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1091
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
1092
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
1093
|
+
};
|
|
1094
|
+
type ListingUser = {
|
|
1095
|
+
__typename?: 'ListingUser';
|
|
1096
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
1097
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
1098
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1099
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
1100
|
+
teacherId?: Maybe<Scalars['ID']['output']>;
|
|
1101
|
+
};
|
|
1102
|
+
type LtiOauthRegistration = {
|
|
1103
|
+
__typename?: 'LtiOauthRegistration';
|
|
1104
|
+
consumerKey?: Maybe<Scalars['String']['output']>;
|
|
1105
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1106
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
1107
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
1108
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1109
|
+
notes?: Maybe<Scalars['String']['output']>;
|
|
1110
|
+
sftpUsername?: Maybe<Scalars['String']['output']>;
|
|
1111
|
+
};
|
|
1112
|
+
type LtiOauthRegistrationsList = {
|
|
1113
|
+
__typename?: 'LtiOauthRegistrationsList';
|
|
1114
|
+
entries?: Maybe<Array<Maybe<LtiOauthRegistration>>>;
|
|
1115
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
1116
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1117
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
1118
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
1119
|
+
};
|
|
1120
|
+
type MonthlyActiveStudent = {
|
|
1121
|
+
__typename?: 'MonthlyActiveStudent';
|
|
1122
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1123
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1124
|
+
studentId?: Maybe<Scalars['Int']['output']>;
|
|
1125
|
+
};
|
|
1126
|
+
type MonthlyActiveTeacher = {
|
|
1127
|
+
__typename?: 'MonthlyActiveTeacher';
|
|
1128
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1129
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1130
|
+
teacherUserId?: Maybe<Scalars['Int']['output']>;
|
|
1131
|
+
};
|
|
1132
|
+
type MonthlyAssignment = {
|
|
1133
|
+
__typename?: 'MonthlyAssignment';
|
|
1134
|
+
assignmentId?: Maybe<Scalars['Int']['output']>;
|
|
1135
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1136
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1137
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
1138
|
+
};
|
|
1139
|
+
type MonthlyMinigame = {
|
|
1140
|
+
__typename?: 'MonthlyMinigame';
|
|
1141
|
+
gameplays?: Maybe<Scalars['Int']['output']>;
|
|
1142
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1143
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1144
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
1145
|
+
};
|
|
1146
|
+
type MonthlyPlaytime = {
|
|
1147
|
+
__typename?: 'MonthlyPlaytime';
|
|
1148
|
+
mode?: Maybe<Scalars['String']['output']>;
|
|
1149
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1150
|
+
playtimeHours?: Maybe<Scalars['Float']['output']>;
|
|
1151
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1152
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
1153
|
+
};
|
|
1154
|
+
type MonthlyQuestion = {
|
|
1155
|
+
__typename?: 'MonthlyQuestion';
|
|
1156
|
+
answerCount?: Maybe<Scalars['Int']['output']>;
|
|
1157
|
+
month?: Maybe<Scalars['String']['output']>;
|
|
1158
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
1159
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
1160
|
+
};
|
|
1161
|
+
type NewLtiOauthRegistration = {
|
|
1162
|
+
__typename?: 'NewLtiOauthRegistration';
|
|
1163
|
+
consumerKey?: Maybe<Scalars['String']['output']>;
|
|
1164
|
+
consumerSecret?: Maybe<Scalars['String']['output']>;
|
|
1165
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
1166
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1167
|
+
};
|
|
1168
|
+
type Parent = {
|
|
1169
|
+
__typename?: 'Parent';
|
|
1170
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
1171
|
+
id: Scalars['ID']['output'];
|
|
1172
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
1173
|
+
user?: Maybe<ParentUser>;
|
|
1174
|
+
};
|
|
1175
|
+
type ParentUser = {
|
|
1176
|
+
__typename?: 'ParentUser';
|
|
1177
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
1178
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
1179
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1180
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
1181
|
+
};
|
|
1182
|
+
type PerformanceReport = {
|
|
1183
|
+
__typename?: 'PerformanceReport';
|
|
1184
|
+
breadcrumbs?: Maybe<Array<Maybe<Breadcrumb>>>;
|
|
1185
|
+
districtId?: Maybe<Scalars['Int']['output']>;
|
|
1186
|
+
gradeLevelOptions?: Maybe<Array<Maybe<SelectOption>>>;
|
|
1187
|
+
gradeLevels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1188
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1189
|
+
learningObjectiveOptionIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
1190
|
+
learningObjectiveOptions?: Maybe<Array<Maybe<SelectOption>>>;
|
|
1191
|
+
learningObjectives?: Maybe<Array<Maybe<PlayerLearningObjectiveResult>>>;
|
|
1192
|
+
players?: Maybe<Array<Maybe<PlayerLearningObjectiveResult>>>;
|
|
1193
|
+
playersAndGroupsOptions?: Maybe<Array<Maybe<SelectOption>>>;
|
|
1194
|
+
report?: Maybe<Scalars['String']['output']>;
|
|
1195
|
+
results?: Maybe<Array<Maybe<PlayerLearningObjectiveResult>>>;
|
|
1196
|
+
schoolId?: Maybe<Scalars['Int']['output']>;
|
|
1197
|
+
scope?: Maybe<Scalars['String']['output']>;
|
|
1198
|
+
selectedGroupAndPlayerIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
1199
|
+
selectedLearningObjectiveIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
1200
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
1201
|
+
standardUnits?: Maybe<Array<Maybe<StandardUnit>>>;
|
|
1202
|
+
standards?: Maybe<Array<Maybe<SelectOption>>>;
|
|
1203
|
+
subjects?: Maybe<Array<Maybe<Subject>>>;
|
|
1204
|
+
subjectsAll?: Maybe<Array<Maybe<Subject>>>;
|
|
1205
|
+
summary?: Maybe<PlayerLearningObjectiveResult>;
|
|
1206
|
+
summaryColHeaders?: Maybe<Array<Maybe<Header>>>;
|
|
1207
|
+
summaryRowHeaders?: Maybe<Array<Maybe<Header>>>;
|
|
1208
|
+
teacherUserId?: Maybe<Scalars['Int']['output']>;
|
|
1209
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1210
|
+
};
|
|
1211
|
+
type PerformanceReportV2Download = {
|
|
1212
|
+
__typename?: 'PerformanceReportV2Download';
|
|
1213
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
1214
|
+
};
|
|
1215
|
+
type Player = {
|
|
1216
|
+
__typename?: 'Player';
|
|
1217
|
+
activities?: Maybe<Array<Maybe<PlayerActivity>>>;
|
|
1218
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
1219
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
1220
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
1221
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1222
|
+
imageUploadHash?: Maybe<Scalars['String']['output']>;
|
|
1223
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
1224
|
+
student?: Maybe<Student>;
|
|
1225
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
1226
|
+
};
|
|
1227
|
+
type PlayerActivity = {
|
|
1228
|
+
__typename?: 'PlayerActivity';
|
|
1229
|
+
assignmentActivity?: Maybe<ActivityV2>;
|
|
1230
|
+
assignmentId?: Maybe<Scalars['ID']['output']>;
|
|
1231
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1232
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1233
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1234
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1235
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
1236
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
1237
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
1238
|
+
miniGame?: Maybe<Game>;
|
|
1239
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
1240
|
+
player?: Maybe<Player>;
|
|
1241
|
+
playerId?: Maybe<Scalars['ID']['output']>;
|
|
1242
|
+
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
1243
|
+
reportedPlaytimeSec?: Maybe<Scalars['Int']['output']>;
|
|
1244
|
+
skipReason?: Maybe<Scalars['String']['output']>;
|
|
1245
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1246
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1247
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1248
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1249
|
+
userSessionId?: Maybe<Scalars['ID']['output']>;
|
|
1250
|
+
video?: Maybe<Video>;
|
|
1251
|
+
};
|
|
1252
|
+
type PlayerActivityAnswer = {
|
|
1253
|
+
__typename?: 'PlayerActivityAnswer';
|
|
1254
|
+
answerId?: Maybe<Scalars['ID']['output']>;
|
|
1255
|
+
answersMap?: Maybe<Scalars['Json']['output']>;
|
|
1256
|
+
answersMapGraded?: Maybe<Scalars['Json']['output']>;
|
|
1257
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1258
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
1259
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
1260
|
+
player?: Maybe<Player>;
|
|
1261
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
1262
|
+
questionScoreCard?: Maybe<Scalars['Json']['output']>;
|
|
1263
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1264
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1265
|
+
};
|
|
1266
|
+
type PlayerAssignment = {
|
|
1267
|
+
__typename?: 'PlayerAssignment';
|
|
1268
|
+
assignment?: Maybe<AssignmentV2>;
|
|
1269
|
+
avatarName?: Maybe<Scalars['String']['output']>;
|
|
1270
|
+
currentActivity?: Maybe<PlayerActivity>;
|
|
1271
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
1272
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1273
|
+
isFocused?: Maybe<Scalars['Boolean']['output']>;
|
|
1274
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
1275
|
+
player?: Maybe<Player>;
|
|
1276
|
+
playerActivities?: Maybe<Array<Maybe<PlayerActivity>>>;
|
|
1277
|
+
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
1278
|
+
reportedPlaytimeSec?: Maybe<Scalars['Int']['output']>;
|
|
1279
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
1280
|
+
totalAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1281
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Int']['output']>;
|
|
1282
|
+
};
|
|
1283
|
+
type PlayerAssignmentList = {
|
|
1284
|
+
__typename?: 'PlayerAssignmentList';
|
|
1285
|
+
entries?: Maybe<Array<Maybe<PlayerAssignment>>>;
|
|
1286
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
1287
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1288
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
1289
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
1290
|
+
};
|
|
1291
|
+
type PlayerAvatar = {
|
|
1292
|
+
__typename?: 'PlayerAvatar';
|
|
1293
|
+
headshotImageUrl?: Maybe<Scalars['String']['output']>;
|
|
1294
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1295
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
1296
|
+
};
|
|
1297
|
+
type PlayerLearningObjectiveResult = {
|
|
1298
|
+
__typename?: 'PlayerLearningObjectiveResult';
|
|
1299
|
+
activityCount?: Maybe<Scalars['Int']['output']>;
|
|
1300
|
+
assessmentCount?: Maybe<Scalars['Int']['output']>;
|
|
1301
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
1302
|
+
learningObjectiveId?: Maybe<Scalars['Int']['output']>;
|
|
1303
|
+
miniGameCount?: Maybe<Scalars['Int']['output']>;
|
|
1304
|
+
numActivitiesPlayed?: Maybe<Scalars['Float']['output']>;
|
|
1305
|
+
percentCorrect?: Maybe<Scalars['Float']['output']>;
|
|
1306
|
+
player?: Maybe<Player>;
|
|
1307
|
+
playerId?: Maybe<Scalars['Int']['output']>;
|
|
1308
|
+
proficiencyStatus?: Maybe<Scalars['String']['output']>;
|
|
1309
|
+
totalAnswered?: Maybe<Scalars['Float']['output']>;
|
|
1310
|
+
totalCorrectlyAnswered?: Maybe<Scalars['Float']['output']>;
|
|
1311
|
+
totalPlaytimeHumanized?: Maybe<Scalars['String']['output']>;
|
|
1312
|
+
totalPlaytimeSec?: Maybe<Scalars['Float']['output']>;
|
|
1313
|
+
};
|
|
1314
|
+
type Playtime = {
|
|
1315
|
+
__typename?: 'Playtime';
|
|
1316
|
+
playDate: Scalars['Date']['output'];
|
|
1317
|
+
playTimeSec: Scalars['Int']['output'];
|
|
1318
|
+
type?: Maybe<PlaytimeType>;
|
|
1319
|
+
};
|
|
1320
|
+
type PlaytimeLimit = {
|
|
1321
|
+
__typename?: 'PlaytimeLimit';
|
|
1322
|
+
durationS?: Maybe<Scalars['Int']['output']>;
|
|
1323
|
+
isEnforced: Scalars['Boolean']['output'];
|
|
1324
|
+
isUnlimited: Scalars['Boolean']['output'];
|
|
1325
|
+
schoolYearPlaytimeS: Scalars['Int']['output'];
|
|
1326
|
+
scope: PlaytimeLimitScope;
|
|
1327
|
+
};
|
|
1328
|
+
declare enum PlaytimeLimitScope {
|
|
1329
|
+
/** Playtime limited at district level */
|
|
1330
|
+
District = "DISTRICT",
|
|
1331
|
+
/** Playtime limited at school level */
|
|
1332
|
+
School = "SCHOOL",
|
|
1333
|
+
/** Playtime limited at teacher level */
|
|
1334
|
+
Teacher = "TEACHER"
|
|
1335
|
+
}
|
|
1336
|
+
declare enum PlaytimeType {
|
|
1337
|
+
Assessment = "ASSESSMENT",
|
|
1338
|
+
AwakeningAcademy = "AWAKENING_ACADEMY",
|
|
1339
|
+
AwakeningOverworld = "AWAKENING_OVERWORLD",
|
|
1340
|
+
AwakeningQuizzler = "AWAKENING_QUIZZLER",
|
|
1341
|
+
AwakeningV3Overworld = "AWAKENING_V3_OVERWORLD",
|
|
1342
|
+
Battle = "BATTLE",
|
|
1343
|
+
BeastieBattle = "BEASTIE_BATTLE",
|
|
1344
|
+
BeastieChallenge = "BEASTIE_CHALLENGE",
|
|
1345
|
+
ClassicPlaylistOverworld = "CLASSIC_PLAYLIST_OVERWORLD",
|
|
1346
|
+
ClassroomAwakening = "CLASSROOM_AWAKENING",
|
|
1347
|
+
FluencyAssess = "FLUENCY_ASSESS",
|
|
1348
|
+
FluencyEstablish = "FLUENCY_ESTABLISH",
|
|
1349
|
+
FluencyPractice = "FLUENCY_PRACTICE",
|
|
1350
|
+
FluencyTyping = "FLUENCY_TYPING",
|
|
1351
|
+
MiniGame = "MINI_GAME",
|
|
1352
|
+
StructuredFreeplay = "STRUCTURED_FREEPLAY",
|
|
1353
|
+
StudentHomePlay = "STUDENT_HOME_PLAY",
|
|
1354
|
+
TargetedLearningOverworld = "TARGETED_LEARNING_OVERWORLD",
|
|
1355
|
+
Video = "VIDEO"
|
|
1356
|
+
}
|
|
1357
|
+
type Product = {
|
|
1358
|
+
__typename?: 'Product';
|
|
1359
|
+
code: Scalars['String']['output'];
|
|
1360
|
+
id: Scalars['ID']['output'];
|
|
1361
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1362
|
+
};
|
|
1363
|
+
type Provider = {
|
|
1364
|
+
__typename?: 'Provider';
|
|
1365
|
+
display?: Maybe<Scalars['String']['output']>;
|
|
1366
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1367
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1368
|
+
};
|
|
1369
|
+
type Question = {
|
|
1370
|
+
__typename?: 'Question';
|
|
1371
|
+
answers?: Maybe<Array<Maybe<Answer>>>;
|
|
1372
|
+
assignedTo?: Maybe<ListingUser>;
|
|
1373
|
+
assignedToId?: Maybe<Scalars['ID']['output']>;
|
|
1374
|
+
clone?: Maybe<Scalars['Boolean']['output']>;
|
|
1375
|
+
concepts?: Maybe<Array<Maybe<Concept>>>;
|
|
1376
|
+
correctAnswerId?: Maybe<Scalars['Int']['output']>;
|
|
1377
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1378
|
+
depthOfKnowledge?: Maybe<Scalars['Int']['output']>;
|
|
1379
|
+
editorTag?: Maybe<Scalars['String']['output']>;
|
|
1380
|
+
explanation?: Maybe<QuestionExplanation>;
|
|
1381
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
1382
|
+
hasImage?: Maybe<Scalars['Boolean']['output']>;
|
|
1383
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1384
|
+
image?: Maybe<Image>;
|
|
1385
|
+
imageId?: Maybe<Scalars['ID']['output']>;
|
|
1386
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
1387
|
+
layout?: Maybe<Scalars['String']['output']>;
|
|
1388
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
1389
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
1390
|
+
masterQuestionId?: Maybe<Scalars['ID']['output']>;
|
|
1391
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
1392
|
+
questionRaw?: Maybe<Scalars['String']['output']>;
|
|
1393
|
+
scoreCard?: Maybe<Scalars['String']['output']>;
|
|
1394
|
+
screenshotUrl?: Maybe<Scalars['String']['output']>;
|
|
1395
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1396
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
1397
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1398
|
+
};
|
|
1399
|
+
type QuestionLearningObjectivesArgs = {
|
|
1400
|
+
standard?: InputMaybe<Scalars['ID']['input']>;
|
|
1401
|
+
};
|
|
1402
|
+
type QuestionExplanation = {
|
|
1403
|
+
__typename?: 'QuestionExplanation';
|
|
1404
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
1405
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
1406
|
+
questionId?: Maybe<Scalars['ID']['output']>;
|
|
1407
|
+
};
|
|
1408
|
+
type RemoveSubscriptionSeatUserResult = {
|
|
1409
|
+
__typename?: 'RemoveSubscriptionSeatUserResult';
|
|
1410
|
+
removedUsers?: Maybe<Array<Maybe<RemovedSubscriptionSeatUsers>>>;
|
|
1411
|
+
subscriptionId: Scalars['ID']['output'];
|
|
1412
|
+
};
|
|
1413
|
+
type RemovedSubscriptionSeatUsers = {
|
|
1414
|
+
__typename?: 'RemovedSubscriptionSeatUsers';
|
|
1415
|
+
userId: Scalars['ID']['output'];
|
|
1416
|
+
};
|
|
1417
|
+
type RootMutationType = {
|
|
1418
|
+
__typename?: 'RootMutationType';
|
|
1419
|
+
addDistrictAdminRegions?: Maybe<CountResult>;
|
|
1420
|
+
/** Add users to a subscription */
|
|
1421
|
+
addUsersToSubscription?: Maybe<Array<Maybe<SubscriptionSeatUser>>>;
|
|
1422
|
+
/** Assign schools to a school admin */
|
|
1423
|
+
assignSchoolsToSchoolAdmin?: Maybe<User>;
|
|
1424
|
+
checkAnswer?: Maybe<CheckAnswerResult>;
|
|
1425
|
+
/** Clone an assignment set */
|
|
1426
|
+
cloneAssignmentSet?: Maybe<AssignmentSet>;
|
|
1427
|
+
/** Copy assignments from one assignment set to another */
|
|
1428
|
+
copyAssignmentsBetweenSets?: Maybe<CopyAssignmentsResult>;
|
|
1429
|
+
/** Create an empty assignment set */
|
|
1430
|
+
createAssignmentSet?: Maybe<AssignmentSet>;
|
|
1431
|
+
/** Create assignment */
|
|
1432
|
+
createAssignmentV2?: Maybe<AssignmentV2>;
|
|
1433
|
+
/** Create awakening activity */
|
|
1434
|
+
createAwakeningActivity?: Maybe<AwakeningActivity>;
|
|
1435
|
+
createDistrictRegion?: Maybe<DistrictRegion>;
|
|
1436
|
+
/** Create a school admin and assign them to schools */
|
|
1437
|
+
createSchoolAdmin?: Maybe<User>;
|
|
1438
|
+
/** Create a subscription code */
|
|
1439
|
+
createSubscriptionCode?: Maybe<SubscriptionCode>;
|
|
1440
|
+
createVideo?: Maybe<Video>;
|
|
1441
|
+
deactivateAccountConfig?: Maybe<AccountConfig>;
|
|
1442
|
+
/** Delete an assignment set */
|
|
1443
|
+
deleteAssignmentSet?: Maybe<AssignmentSet>;
|
|
1444
|
+
deleteAssignmentV2?: Maybe<AssignmentV2>;
|
|
1445
|
+
deleteDistrictRegions?: Maybe<CountResult>;
|
|
1446
|
+
deleteLtiOauthRegistration?: Maybe<LtiOauthRegistration>;
|
|
1447
|
+
/** Delete a school admin (removes flag and all school associations) */
|
|
1448
|
+
deleteSchoolAdmin?: Maybe<DeleteSchoolAdminResult>;
|
|
1449
|
+
deleteSchoolAdminSchool?: Maybe<SchoolAdminSchool>;
|
|
1450
|
+
/** Delete a subscription */
|
|
1451
|
+
deleteSubscription?: Maybe<DeleteSubscriptionResult>;
|
|
1452
|
+
/** Delete a subscription code */
|
|
1453
|
+
deleteSubscriptionCode?: Maybe<SubscriptionCode>;
|
|
1454
|
+
editAssignmentPlaylist?: Maybe<AssignmentV2>;
|
|
1455
|
+
editDistrictAdminRegions?: Maybe<CountResult>;
|
|
1456
|
+
editDistrictRegionAdmins?: Maybe<CountResult>;
|
|
1457
|
+
editDistrictRegionSchools?: Maybe<DistrictRegion>;
|
|
1458
|
+
editSchoolDistrictRegions?: Maybe<School>;
|
|
1459
|
+
/** End the current impersonation session and return to admin session */
|
|
1460
|
+
endImpersonation?: Maybe<EndImpersonationResult>;
|
|
1461
|
+
/** Ensure a subscriber object exist */
|
|
1462
|
+
ensureSubscriber?: Maybe<Subscriber>;
|
|
1463
|
+
/** Expire a subscription code */
|
|
1464
|
+
expireSubscriptionCode?: Maybe<SubscriptionCode>;
|
|
1465
|
+
generateLtiOauthRegistration?: Maybe<NewLtiOauthRegistration>;
|
|
1466
|
+
/** Start impersonating a user. Only admins can impersonate users within their domain. */
|
|
1467
|
+
impersonateUser?: Maybe<ImpersonationResult>;
|
|
1468
|
+
performanceReportV2Download?: Maybe<PerformanceReportV2Download>;
|
|
1469
|
+
/** Publish an assignment set */
|
|
1470
|
+
publishAssignmentSet?: Maybe<AssignmentSetPublishJob>;
|
|
1471
|
+
/** Records an analytics event */
|
|
1472
|
+
recordEvent?: Maybe<AnalyticsEvent>;
|
|
1473
|
+
/** Remove schools from a school admin */
|
|
1474
|
+
removeSchoolsFromSchoolAdmin?: Maybe<User>;
|
|
1475
|
+
/** Remove users from a subscription */
|
|
1476
|
+
removeUsersFromSubscription?: Maybe<RemoveSubscriptionSeatUserResult>;
|
|
1477
|
+
setIsDistrictAdmin?: Maybe<CountResult>;
|
|
1478
|
+
setIsSchoolAdmin?: Maybe<CountResult>;
|
|
1479
|
+
/** Create a subscription */
|
|
1480
|
+
subscribe?: Maybe<SubscriberSubscription>;
|
|
1481
|
+
/** Unsubscribe from a subscription */
|
|
1482
|
+
unsubscribe?: Maybe<DeleteSubscriptionResult>;
|
|
1483
|
+
/** Update an assignment set */
|
|
1484
|
+
updateAssignmentSet?: Maybe<AssignmentSet>;
|
|
1485
|
+
updateAssignmentV2?: Maybe<AssignmentV2>;
|
|
1486
|
+
updateSchoolAdminSchool?: Maybe<SchoolAdminSchool>;
|
|
1487
|
+
/** Update a subscription */
|
|
1488
|
+
updateSubscription?: Maybe<SubscriberSubscription>;
|
|
1489
|
+
upsertDistrictPlaytimeLimit: DistrictPlaytimeLimit;
|
|
1490
|
+
upsertSchoolPlaytimeLimit: SchoolPlaytimeLimit;
|
|
1491
|
+
upsertTeacherPlaytimeLimit: TeacherPlaytimeLimit;
|
|
1492
|
+
};
|
|
1493
|
+
type RootMutationTypeAddDistrictAdminRegionsArgs = {
|
|
1494
|
+
districtRegionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1495
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1496
|
+
};
|
|
1497
|
+
type RootMutationTypeAddUsersToSubscriptionArgs = {
|
|
1498
|
+
subscriptionId: Scalars['ID']['input'];
|
|
1499
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1500
|
+
};
|
|
1501
|
+
type RootMutationTypeAssignSchoolsToSchoolAdminArgs = {
|
|
1502
|
+
schoolAdminId: Scalars['ID']['input'];
|
|
1503
|
+
schoolIds: Array<Scalars['ID']['input']>;
|
|
1504
|
+
};
|
|
1505
|
+
type RootMutationTypeCheckAnswerArgs = {
|
|
1506
|
+
answerId?: InputMaybe<Scalars['ID']['input']>;
|
|
1507
|
+
answersMap?: InputMaybe<Scalars['String']['input']>;
|
|
1508
|
+
questionId: Scalars['ID']['input'];
|
|
1509
|
+
};
|
|
1510
|
+
type RootMutationTypeCloneAssignmentSetArgs = {
|
|
1511
|
+
id: Scalars['ID']['input'];
|
|
1512
|
+
};
|
|
1513
|
+
type RootMutationTypeCopyAssignmentsBetweenSetsArgs = {
|
|
1514
|
+
assignmentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1515
|
+
position?: InputMaybe<Scalars['Int']['input']>;
|
|
1516
|
+
sourceSetId: Scalars['ID']['input'];
|
|
1517
|
+
targetSetId: Scalars['ID']['input'];
|
|
1518
|
+
};
|
|
1519
|
+
type RootMutationTypeCreateAssignmentV2Args = {
|
|
1520
|
+
activities?: InputMaybe<Array<InputMaybe<ActivityInputV2>>>;
|
|
1521
|
+
awakeningAllowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1522
|
+
basicGameplayer: Scalars['Boolean']['input'];
|
|
1523
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1524
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1525
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1526
|
+
initialLearningObjectiveId?: InputMaybe<Scalars['ID']['input']>;
|
|
1527
|
+
mode: Scalars['String']['input'];
|
|
1528
|
+
multiLanguage: Scalars['Boolean']['input'];
|
|
1529
|
+
name: Scalars['String']['input'];
|
|
1530
|
+
playlistId?: InputMaybe<Scalars['ID']['input']>;
|
|
1531
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1532
|
+
};
|
|
1533
|
+
type RootMutationTypeCreateAwakeningActivityArgs = {
|
|
1534
|
+
playDurationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
1535
|
+
type: Scalars['String']['input'];
|
|
1536
|
+
};
|
|
1537
|
+
type RootMutationTypeCreateDistrictRegionArgs = {
|
|
1538
|
+
districtId: Scalars['ID']['input'];
|
|
1539
|
+
name: Scalars['String']['input'];
|
|
1540
|
+
};
|
|
1541
|
+
type RootMutationTypeCreateSchoolAdminArgs = {
|
|
1542
|
+
schoolIds: Array<Scalars['ID']['input']>;
|
|
1543
|
+
userId: Scalars['ID']['input'];
|
|
1544
|
+
};
|
|
1545
|
+
type RootMutationTypeCreateSubscriptionCodeArgs = {
|
|
1546
|
+
endAt: Scalars['DateTime']['input'];
|
|
1547
|
+
maxUsers: Scalars['Int']['input'];
|
|
1548
|
+
subscriptionId: Scalars['ID']['input'];
|
|
1549
|
+
};
|
|
1550
|
+
type RootMutationTypeCreateVideoArgs = {
|
|
1551
|
+
duration?: InputMaybe<Scalars['Int']['input']>;
|
|
1552
|
+
endsAt?: InputMaybe<Scalars['Int']['input']>;
|
|
1553
|
+
startsAt?: InputMaybe<Scalars['Int']['input']>;
|
|
1554
|
+
thumbnailUrl: Scalars['String']['input'];
|
|
1555
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1556
|
+
type: Scalars['String']['input'];
|
|
1557
|
+
url: Scalars['String']['input'];
|
|
1558
|
+
videoId: Scalars['String']['input'];
|
|
1559
|
+
};
|
|
1560
|
+
type RootMutationTypeDeactivateAccountConfigArgs = {
|
|
1561
|
+
id: Scalars['Int']['input'];
|
|
1562
|
+
};
|
|
1563
|
+
type RootMutationTypeDeleteAssignmentSetArgs = {
|
|
1564
|
+
id: Scalars['ID']['input'];
|
|
1565
|
+
};
|
|
1566
|
+
type RootMutationTypeDeleteAssignmentV2Args = {
|
|
1567
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1568
|
+
};
|
|
1569
|
+
type RootMutationTypeDeleteDistrictRegionsArgs = {
|
|
1570
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1571
|
+
};
|
|
1572
|
+
type RootMutationTypeDeleteLtiOauthRegistrationArgs = {
|
|
1573
|
+
id: Scalars['Int']['input'];
|
|
1574
|
+
};
|
|
1575
|
+
type RootMutationTypeDeleteSchoolAdminArgs = {
|
|
1576
|
+
userId: Scalars['ID']['input'];
|
|
1577
|
+
};
|
|
1578
|
+
type RootMutationTypeDeleteSchoolAdminSchoolArgs = {
|
|
1579
|
+
schoolId: Scalars['ID']['input'];
|
|
1580
|
+
userId: Scalars['ID']['input'];
|
|
1581
|
+
};
|
|
1582
|
+
type RootMutationTypeDeleteSubscriptionArgs = {
|
|
1583
|
+
subscriptionId: Scalars['ID']['input'];
|
|
1584
|
+
};
|
|
1585
|
+
type RootMutationTypeDeleteSubscriptionCodeArgs = {
|
|
1586
|
+
subscriptionCodeId: Scalars['ID']['input'];
|
|
1587
|
+
};
|
|
1588
|
+
type RootMutationTypeEditAssignmentPlaylistArgs = {
|
|
1589
|
+
activities?: InputMaybe<Array<InputMaybe<ActivityInputV2>>>;
|
|
1590
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1591
|
+
initialLearningObjectiveId: Scalars['ID']['input'];
|
|
1592
|
+
name: Scalars['String']['input'];
|
|
1593
|
+
randomQuestionOrder?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1594
|
+
};
|
|
1595
|
+
type RootMutationTypeEditDistrictAdminRegionsArgs = {
|
|
1596
|
+
districtRegionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1597
|
+
id: Scalars['ID']['input'];
|
|
1598
|
+
};
|
|
1599
|
+
type RootMutationTypeEditDistrictRegionAdminsArgs = {
|
|
1600
|
+
id: Scalars['ID']['input'];
|
|
1601
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1602
|
+
};
|
|
1603
|
+
type RootMutationTypeEditDistrictRegionSchoolsArgs = {
|
|
1604
|
+
id: Scalars['ID']['input'];
|
|
1605
|
+
schoolIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1606
|
+
};
|
|
1607
|
+
type RootMutationTypeEditSchoolDistrictRegionsArgs = {
|
|
1608
|
+
districtRegionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1609
|
+
id: Scalars['ID']['input'];
|
|
1610
|
+
};
|
|
1611
|
+
type RootMutationTypeEnsureSubscriberArgs = {
|
|
1612
|
+
districtId?: InputMaybe<Scalars['ID']['input']>;
|
|
1613
|
+
schoolId?: InputMaybe<Scalars['ID']['input']>;
|
|
1614
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
1615
|
+
};
|
|
1616
|
+
type RootMutationTypeExpireSubscriptionCodeArgs = {
|
|
1617
|
+
subscriptionCodeId: Scalars['ID']['input'];
|
|
1618
|
+
};
|
|
1619
|
+
type RootMutationTypeGenerateLtiOauthRegistrationArgs = {
|
|
1620
|
+
districtId: Scalars['Int']['input'];
|
|
1621
|
+
};
|
|
1622
|
+
type RootMutationTypeImpersonateUserArgs = {
|
|
1623
|
+
userId: Scalars['ID']['input'];
|
|
1624
|
+
};
|
|
1625
|
+
type RootMutationTypePerformanceReportV2DownloadArgs = {
|
|
1626
|
+
colSort?: InputMaybe<Scalars['String']['input']>;
|
|
1627
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
1628
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1629
|
+
gradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1630
|
+
groupAndPlayerIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1631
|
+
learningObjectiveIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1632
|
+
minNumOfQuestions?: InputMaybe<Scalars['Int']['input']>;
|
|
1633
|
+
proficiencyThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
1634
|
+
report?: InputMaybe<Scalars['String']['input']>;
|
|
1635
|
+
rowSort?: InputMaybe<Scalars['String']['input']>;
|
|
1636
|
+
schoolId?: InputMaybe<Scalars['Int']['input']>;
|
|
1637
|
+
scope?: InputMaybe<Scalars['String']['input']>;
|
|
1638
|
+
standard?: InputMaybe<Scalars['ID']['input']>;
|
|
1639
|
+
teacherUserId?: InputMaybe<Scalars['Int']['input']>;
|
|
1640
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1641
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1642
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1643
|
+
};
|
|
1644
|
+
type RootMutationTypePublishAssignmentSetArgs = {
|
|
1645
|
+
id: Scalars['ID']['input'];
|
|
1646
|
+
};
|
|
1647
|
+
type RootMutationTypeRecordEventArgs = {
|
|
1648
|
+
event?: InputMaybe<AnalyticsEventInput>;
|
|
1649
|
+
};
|
|
1650
|
+
type RootMutationTypeRemoveSchoolsFromSchoolAdminArgs = {
|
|
1651
|
+
schoolAdminId: Scalars['ID']['input'];
|
|
1652
|
+
schoolIds: Array<Scalars['ID']['input']>;
|
|
1653
|
+
};
|
|
1654
|
+
type RootMutationTypeRemoveUsersFromSubscriptionArgs = {
|
|
1655
|
+
subscriptionId: Scalars['ID']['input'];
|
|
1656
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1657
|
+
};
|
|
1658
|
+
type RootMutationTypeSetIsDistrictAdminArgs = {
|
|
1659
|
+
isDistrictAdmin: Scalars['Boolean']['input'];
|
|
1660
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1661
|
+
};
|
|
1662
|
+
type RootMutationTypeSetIsSchoolAdminArgs = {
|
|
1663
|
+
isSchoolAdmin: Scalars['Boolean']['input'];
|
|
1664
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1665
|
+
};
|
|
1666
|
+
type RootMutationTypeSubscribeArgs = {
|
|
1667
|
+
endAt: Scalars['DateTime']['input'];
|
|
1668
|
+
enforceSeats: Scalars['Boolean']['input'];
|
|
1669
|
+
maxUsers: Scalars['Int']['input'];
|
|
1670
|
+
productId: Scalars['ID']['input'];
|
|
1671
|
+
subscriberId: Scalars['ID']['input'];
|
|
1672
|
+
subscriptionProgramId?: InputMaybe<Scalars['ID']['input']>;
|
|
1673
|
+
};
|
|
1674
|
+
type RootMutationTypeUnsubscribeArgs = {
|
|
1675
|
+
subscriptionId: Scalars['ID']['input'];
|
|
1676
|
+
};
|
|
1677
|
+
type RootMutationTypeUpdateAssignmentSetArgs = {
|
|
1678
|
+
assignments?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1679
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1680
|
+
id: Scalars['ID']['input'];
|
|
1681
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1682
|
+
policy?: InputMaybe<AbacPolicyUpdate>;
|
|
1683
|
+
standards?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1684
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1685
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1686
|
+
};
|
|
1687
|
+
type RootMutationTypeUpdateAssignmentV2Args = {
|
|
1688
|
+
awakeningAllowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1689
|
+
basicGameplayer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1690
|
+
durationDays?: InputMaybe<Scalars['Int']['input']>;
|
|
1691
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1692
|
+
groupIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1693
|
+
id: Scalars['ID']['input'];
|
|
1694
|
+
multiLanguage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1695
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1696
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1697
|
+
startDayOffset?: InputMaybe<Scalars['Int']['input']>;
|
|
1698
|
+
};
|
|
1699
|
+
type RootMutationTypeUpdateSchoolAdminSchoolArgs = {
|
|
1700
|
+
canSeePerformanceData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1701
|
+
schoolId: Scalars['ID']['input'];
|
|
1702
|
+
userId: Scalars['ID']['input'];
|
|
1703
|
+
};
|
|
1704
|
+
type RootMutationTypeUpdateSubscriptionArgs = {
|
|
1705
|
+
endAt: Scalars['DateTime']['input'];
|
|
1706
|
+
enforceSeats: Scalars['Boolean']['input'];
|
|
1707
|
+
id: Scalars['ID']['input'];
|
|
1708
|
+
maxUsers: Scalars['Int']['input'];
|
|
1709
|
+
subscriptionProgramId?: InputMaybe<Scalars['ID']['input']>;
|
|
1710
|
+
};
|
|
1711
|
+
type RootMutationTypeUpsertDistrictPlaytimeLimitArgs = {
|
|
1712
|
+
districtId: Scalars['ID']['input'];
|
|
1713
|
+
durationS?: InputMaybe<Scalars['Int']['input']>;
|
|
1714
|
+
expiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1715
|
+
isEnforced?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1716
|
+
};
|
|
1717
|
+
type RootMutationTypeUpsertSchoolPlaytimeLimitArgs = {
|
|
1718
|
+
durationS?: InputMaybe<Scalars['Int']['input']>;
|
|
1719
|
+
expiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1720
|
+
isEnforced?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1721
|
+
schoolId: Scalars['ID']['input'];
|
|
1722
|
+
};
|
|
1723
|
+
type RootMutationTypeUpsertTeacherPlaytimeLimitArgs = {
|
|
1724
|
+
durationS?: InputMaybe<Scalars['Int']['input']>;
|
|
1725
|
+
expiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1726
|
+
isEnforced?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1727
|
+
teacherUserId: Scalars['ID']['input'];
|
|
1728
|
+
};
|
|
1729
|
+
type RootQueryType = {
|
|
1730
|
+
__typename?: 'RootQueryType';
|
|
1731
|
+
/** LTI OAuth registrations belonging to current user's domain (district/school) */
|
|
1732
|
+
accountConfigs2?: Maybe<AccountConfigsList>;
|
|
1733
|
+
/** List of subscriptions a user may have a seat on */
|
|
1734
|
+
allowedSubscriptions?: Maybe<Array<Maybe<SubscriberSubscription>>>;
|
|
1735
|
+
/** Show an assignment set */
|
|
1736
|
+
assignmentSet?: Maybe<AssignmentSet>;
|
|
1737
|
+
/** Get assignment set assignments with teachers */
|
|
1738
|
+
assignmentSetAssignmentsWithTeachers?: Maybe<AssignmentSetAssignmentsWithTeachers>;
|
|
1739
|
+
assignmentSetPublishJob?: Maybe<AssignmentSetPublishJob>;
|
|
1740
|
+
/** List assignment sets */
|
|
1741
|
+
assignmentSets?: Maybe<AssignmentSetList>;
|
|
1742
|
+
/** Show an assignment */
|
|
1743
|
+
assignmentV2?: Maybe<AssignmentV2>;
|
|
1744
|
+
/** Current user */
|
|
1745
|
+
currentUser?: Maybe<User>;
|
|
1746
|
+
/** District */
|
|
1747
|
+
district?: Maybe<District>;
|
|
1748
|
+
/** District Regions */
|
|
1749
|
+
districtRegions?: Maybe<DistrictRegionsList>;
|
|
1750
|
+
/** Districts belonging to current district */
|
|
1751
|
+
districts?: Maybe<DistrictsList>;
|
|
1752
|
+
/** Districts belonging to current district */
|
|
1753
|
+
districts2?: Maybe<DistrictsList>;
|
|
1754
|
+
fluencyActiveStudentsCount: Scalars['Int']['output'];
|
|
1755
|
+
fluencyGrowthPeriods?: Maybe<Array<FluencyGrowthPeriod>>;
|
|
1756
|
+
fluencyPlayerDistribution?: Maybe<FluencyPlayerDistribution>;
|
|
1757
|
+
fluencySessionsCount?: Maybe<FluencySessionsCount>;
|
|
1758
|
+
fluencySessionsMedianStudentCount?: Maybe<Scalars['Int']['output']>;
|
|
1759
|
+
fluencyTotalNetGainFactsCount: Scalars['Int']['output'];
|
|
1760
|
+
fluencyTrialsCount?: Maybe<FluencyTrialsCount>;
|
|
1761
|
+
fluencyTrialsMedianStudentReport?: Maybe<FluencyTrialsMedianStudentReport>;
|
|
1762
|
+
/** Game details */
|
|
1763
|
+
game?: Maybe<Game>;
|
|
1764
|
+
/** Games search */
|
|
1765
|
+
games?: Maybe<GamesList>;
|
|
1766
|
+
/** Get eligible teacher grade counts for an assignment set */
|
|
1767
|
+
getEligibleTeacherGradeCountsForAssignmentSet?: Maybe<Array<Maybe<TeacherGradeCount>>>;
|
|
1768
|
+
/** Get information about the current impersonation session (if any) */
|
|
1769
|
+
impersonationInfo?: Maybe<ImpersonationInfo>;
|
|
1770
|
+
/** Learning objectives belonging to current admin */
|
|
1771
|
+
learningObjectives?: Maybe<LearningObjectivesList>;
|
|
1772
|
+
/** LTI OAuth registrations belonging to current user's domain (district/school) */
|
|
1773
|
+
ltiOauthRegistrations?: Maybe<LtiOauthRegistrationsList>;
|
|
1774
|
+
/** LTI OAuth registrations belonging to current user's domain (district/school) */
|
|
1775
|
+
ltiOauthRegistrations2?: Maybe<LtiOauthRegistrationsList>;
|
|
1776
|
+
myFeatureFlagVariants?: Maybe<Array<Maybe<FeatureFlagVariant>>>;
|
|
1777
|
+
myFeatureFlags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1778
|
+
performanceReport?: Maybe<PerformanceReport>;
|
|
1779
|
+
/** Products users may subscribe to */
|
|
1780
|
+
products?: Maybe<Array<Maybe<Product>>>;
|
|
1781
|
+
/** School */
|
|
1782
|
+
school?: Maybe<School>;
|
|
1783
|
+
/** List school administrators */
|
|
1784
|
+
schoolAdmins?: Maybe<UsersList>;
|
|
1785
|
+
/** Schools belonging to current district */
|
|
1786
|
+
schools?: Maybe<SchoolsList>;
|
|
1787
|
+
/** Schools belonging to current district */
|
|
1788
|
+
schools2?: Maybe<SchoolsList>;
|
|
1789
|
+
/** Schools and paid non-admin teachers belonging to current district */
|
|
1790
|
+
schoolsAndTeachersForDistrictAssignments?: Maybe<Array<Maybe<SchoolAndTeachersForDistrictAssignment>>>;
|
|
1791
|
+
/** Standard */
|
|
1792
|
+
standard?: Maybe<Standard>;
|
|
1793
|
+
/** Standards */
|
|
1794
|
+
standards?: Maybe<Array<Maybe<Standard>>>;
|
|
1795
|
+
/** States */
|
|
1796
|
+
states?: Maybe<StatesList>;
|
|
1797
|
+
/** States */
|
|
1798
|
+
states2?: Maybe<StatesList>;
|
|
1799
|
+
/** A subscription */
|
|
1800
|
+
subscriberSubscription?: Maybe<SubscriberSubscription>;
|
|
1801
|
+
/** Subscription codes for a subscription */
|
|
1802
|
+
subscriptionCodes?: Maybe<SubscriptionCodesList>;
|
|
1803
|
+
/** Subscription Programs */
|
|
1804
|
+
subscriptionPrograms?: Maybe<SubscriptionProgramList>;
|
|
1805
|
+
usageReport?: Maybe<UsageReport>;
|
|
1806
|
+
usageReportChart?: Maybe<UsageReportChartResult>;
|
|
1807
|
+
usageReportStudentActivity?: Maybe<UsageReportStudentActivityResult>;
|
|
1808
|
+
usageReportTable?: Maybe<UsageReportTableResult>;
|
|
1809
|
+
/** Users belonging to current user's domain (district/school) */
|
|
1810
|
+
users?: Maybe<UsersList>;
|
|
1811
|
+
/** Users belonging to current user's domain (district/school) */
|
|
1812
|
+
users2?: Maybe<UsersList>;
|
|
1813
|
+
};
|
|
1814
|
+
type RootQueryTypeAccountConfigs2Args = {
|
|
1815
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1816
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1817
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1818
|
+
};
|
|
1819
|
+
type RootQueryTypeAllowedSubscriptionsArgs = {
|
|
1820
|
+
userId: Scalars['ID']['input'];
|
|
1821
|
+
};
|
|
1822
|
+
type RootQueryTypeAssignmentSetArgs = {
|
|
1823
|
+
id: Scalars['ID']['input'];
|
|
1824
|
+
};
|
|
1825
|
+
type RootQueryTypeAssignmentSetAssignmentsWithTeachersArgs = {
|
|
1826
|
+
assignmentSetId: Scalars['ID']['input'];
|
|
1827
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1828
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1829
|
+
teacherUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
1830
|
+
};
|
|
1831
|
+
type RootQueryTypeAssignmentSetPublishJobArgs = {
|
|
1832
|
+
id: Scalars['ID']['input'];
|
|
1833
|
+
};
|
|
1834
|
+
type RootQueryTypeAssignmentSetsArgs = {
|
|
1835
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1836
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1837
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1838
|
+
sortBy?: InputMaybe<AssignmentSetSortType>;
|
|
1839
|
+
sortDirection?: InputMaybe<SortDirectionType>;
|
|
1840
|
+
};
|
|
1841
|
+
type RootQueryTypeAssignmentV2Args = {
|
|
1842
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1843
|
+
};
|
|
1844
|
+
type RootQueryTypeDistrictArgs = {
|
|
1845
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1846
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1847
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1848
|
+
};
|
|
1849
|
+
type RootQueryTypeDistrictRegionsArgs = {
|
|
1850
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1851
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1852
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1853
|
+
};
|
|
1854
|
+
type RootQueryTypeDistrictsArgs = {
|
|
1855
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1856
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1857
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1858
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1859
|
+
stateId?: InputMaybe<Scalars['Int']['input']>;
|
|
1860
|
+
};
|
|
1861
|
+
type RootQueryTypeDistricts2Args = {
|
|
1862
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1863
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1864
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1865
|
+
};
|
|
1866
|
+
type RootQueryTypeFluencyActiveStudentsCountArgs = {
|
|
1867
|
+
filter: FluencyReportFilter;
|
|
1868
|
+
};
|
|
1869
|
+
type RootQueryTypeFluencyGrowthPeriodsArgs = {
|
|
1870
|
+
filter: FluencyReportFilter;
|
|
1871
|
+
};
|
|
1872
|
+
type RootQueryTypeFluencyPlayerDistributionArgs = {
|
|
1873
|
+
filter: FluencyReportFilter;
|
|
1874
|
+
};
|
|
1875
|
+
type RootQueryTypeFluencySessionsCountArgs = {
|
|
1876
|
+
filter: FluencyReportFilter;
|
|
1877
|
+
};
|
|
1878
|
+
type RootQueryTypeFluencySessionsMedianStudentCountArgs = {
|
|
1879
|
+
filter: FluencyReportFilter;
|
|
1880
|
+
};
|
|
1881
|
+
type RootQueryTypeFluencyTotalNetGainFactsCountArgs = {
|
|
1882
|
+
filter: FluencyReportFilter;
|
|
1883
|
+
};
|
|
1884
|
+
type RootQueryTypeFluencyTrialsCountArgs = {
|
|
1885
|
+
filter: FluencyReportFilter;
|
|
1886
|
+
};
|
|
1887
|
+
type RootQueryTypeFluencyTrialsMedianStudentReportArgs = {
|
|
1888
|
+
filter: FluencyReportFilter;
|
|
1889
|
+
};
|
|
1890
|
+
type RootQueryTypeGameArgs = {
|
|
1891
|
+
id: Scalars['ID']['input'];
|
|
1892
|
+
};
|
|
1893
|
+
type RootQueryTypeGamesArgs = {
|
|
1894
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
1895
|
+
gameType?: InputMaybe<Scalars['String']['input']>;
|
|
1896
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1897
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1898
|
+
includeLosInSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1899
|
+
learningObjectiveIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1900
|
+
maxLexileLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
1901
|
+
multiLanguage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1902
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1903
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1904
|
+
savesProgress?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1905
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1906
|
+
supportsIpad?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1907
|
+
supportsTts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1908
|
+
};
|
|
1909
|
+
type RootQueryTypeGetEligibleTeacherGradeCountsForAssignmentSetArgs = {
|
|
1910
|
+
id: Scalars['ID']['input'];
|
|
1911
|
+
};
|
|
1912
|
+
type RootQueryTypeLearningObjectivesArgs = {
|
|
1913
|
+
currentTeacherPlaylist?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1914
|
+
currentTeacherStandard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1915
|
+
gradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1916
|
+
grades?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1917
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1918
|
+
instructional?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1919
|
+
minGameCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1920
|
+
minQuestionCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1921
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1922
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1923
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1924
|
+
subjectAreas?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1925
|
+
};
|
|
1926
|
+
type RootQueryTypeLtiOauthRegistrationsArgs = {
|
|
1927
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1928
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1929
|
+
};
|
|
1930
|
+
type RootQueryTypeLtiOauthRegistrations2Args = {
|
|
1931
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1932
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1933
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1934
|
+
};
|
|
1935
|
+
type RootQueryTypePerformanceReportArgs = {
|
|
1936
|
+
colSort?: InputMaybe<Scalars['String']['input']>;
|
|
1937
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
1938
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1939
|
+
gradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1940
|
+
groupAndPlayerIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1941
|
+
learningObjectiveIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1942
|
+
minNumOfQuestions?: InputMaybe<Scalars['Int']['input']>;
|
|
1943
|
+
proficiencyThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
1944
|
+
report?: InputMaybe<Scalars['String']['input']>;
|
|
1945
|
+
rowSort?: InputMaybe<Scalars['String']['input']>;
|
|
1946
|
+
schoolId?: InputMaybe<Scalars['Int']['input']>;
|
|
1947
|
+
scope?: InputMaybe<Scalars['String']['input']>;
|
|
1948
|
+
standard?: InputMaybe<Scalars['ID']['input']>;
|
|
1949
|
+
teacherUserId?: InputMaybe<Scalars['Int']['input']>;
|
|
1950
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1951
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1952
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1953
|
+
};
|
|
1954
|
+
type RootQueryTypeSchoolArgs = {
|
|
1955
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1956
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1957
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1958
|
+
};
|
|
1959
|
+
type RootQueryTypeSchoolAdminsArgs = {
|
|
1960
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1961
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1962
|
+
};
|
|
1963
|
+
type RootQueryTypeSchoolsArgs = {
|
|
1964
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
1965
|
+
districtIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1966
|
+
ids?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1967
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1968
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1969
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1970
|
+
stateId?: InputMaybe<Scalars['Int']['input']>;
|
|
1971
|
+
stateIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1972
|
+
};
|
|
1973
|
+
type RootQueryTypeSchools2Args = {
|
|
1974
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
1975
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1976
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1977
|
+
};
|
|
1978
|
+
type RootQueryTypeSchoolsAndTeachersForDistrictAssignmentsArgs = {
|
|
1979
|
+
gradeLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
1980
|
+
gradeLevels: Array<Scalars['Int']['input']>;
|
|
1981
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1982
|
+
subjectArea: Scalars['String']['input'];
|
|
1983
|
+
};
|
|
1984
|
+
type RootQueryTypeStandardArgs = {
|
|
1985
|
+
id: Scalars['ID']['input'];
|
|
1986
|
+
};
|
|
1987
|
+
type RootQueryTypeStandardsArgs = {
|
|
1988
|
+
districtId?: InputMaybe<Scalars['ID']['input']>;
|
|
1989
|
+
subjectArea?: InputMaybe<Scalars['String']['input']>;
|
|
1990
|
+
withData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1991
|
+
};
|
|
1992
|
+
type RootQueryTypeStatesArgs = {
|
|
1993
|
+
ids?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
1994
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1995
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
1996
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
1997
|
+
};
|
|
1998
|
+
type RootQueryTypeStates2Args = {
|
|
1999
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
2000
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2001
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2002
|
+
};
|
|
2003
|
+
type RootQueryTypeSubscriberSubscriptionArgs = {
|
|
2004
|
+
id: Scalars['ID']['input'];
|
|
2005
|
+
};
|
|
2006
|
+
type RootQueryTypeSubscriptionCodesArgs = {
|
|
2007
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2008
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2009
|
+
subscriptionId: Scalars['ID']['input'];
|
|
2010
|
+
};
|
|
2011
|
+
type RootQueryTypeUsageReportArgs = {
|
|
2012
|
+
dateEnd?: InputMaybe<Scalars['String']['input']>;
|
|
2013
|
+
dateStart?: InputMaybe<Scalars['String']['input']>;
|
|
2014
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
2015
|
+
gradeLevel?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2016
|
+
paid?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2017
|
+
schoolIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2018
|
+
subjectArea?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2019
|
+
teacherGradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2020
|
+
};
|
|
2021
|
+
type RootQueryTypeUsageReportChartArgs = {
|
|
2022
|
+
chartName: Scalars['String']['input'];
|
|
2023
|
+
dateEnd?: InputMaybe<Scalars['String']['input']>;
|
|
2024
|
+
dateStart?: InputMaybe<Scalars['String']['input']>;
|
|
2025
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
2026
|
+
gradeLevel?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2027
|
+
paid?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2028
|
+
schoolIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2029
|
+
subjectArea?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2030
|
+
teacherGradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2031
|
+
};
|
|
2032
|
+
type RootQueryTypeUsageReportStudentActivityArgs = {
|
|
2033
|
+
dateEnd?: InputMaybe<Scalars['String']['input']>;
|
|
2034
|
+
dateStart?: InputMaybe<Scalars['String']['input']>;
|
|
2035
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
2036
|
+
gradeLevel?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2037
|
+
paid?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2038
|
+
schoolIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2039
|
+
subjectArea?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2040
|
+
teacherGradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2041
|
+
};
|
|
2042
|
+
type RootQueryTypeUsageReportTableArgs = {
|
|
2043
|
+
dateEnd?: InputMaybe<Scalars['String']['input']>;
|
|
2044
|
+
dateStart?: InputMaybe<Scalars['String']['input']>;
|
|
2045
|
+
districtId?: InputMaybe<Scalars['Int']['input']>;
|
|
2046
|
+
gradeLevel?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2047
|
+
paid?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2048
|
+
schoolIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
2049
|
+
subjectArea?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2050
|
+
tableName: Scalars['String']['input'];
|
|
2051
|
+
teacherGradeLevels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2052
|
+
};
|
|
2053
|
+
type RootQueryTypeUsersArgs = {
|
|
2054
|
+
filter?: InputMaybe<UserFilter>;
|
|
2055
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2056
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2057
|
+
};
|
|
2058
|
+
type RootQueryTypeUsers2Args = {
|
|
2059
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>>>;
|
|
2060
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2061
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2062
|
+
role?: InputMaybe<Scalars['String']['input']>;
|
|
2063
|
+
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
2064
|
+
sortDirection?: InputMaybe<Scalars['String']['input']>;
|
|
2065
|
+
};
|
|
2066
|
+
type RosteringSource = {
|
|
2067
|
+
__typename?: 'RosteringSource';
|
|
2068
|
+
hasCanvas?: Maybe<Scalars['Boolean']['output']>;
|
|
2069
|
+
hasClever?: Maybe<Scalars['Boolean']['output']>;
|
|
2070
|
+
hasGoogle?: Maybe<Scalars['Boolean']['output']>;
|
|
2071
|
+
hasOneRoster?: Maybe<Scalars['Boolean']['output']>;
|
|
2072
|
+
};
|
|
2073
|
+
type School = {
|
|
2074
|
+
__typename?: 'School';
|
|
2075
|
+
district?: Maybe<District>;
|
|
2076
|
+
districtRegion?: Maybe<DistrictRegion>;
|
|
2077
|
+
effectiveSetting?: Maybe<SchoolSetting>;
|
|
2078
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2079
|
+
ncesSchoolId?: Maybe<Scalars['String']['output']>;
|
|
2080
|
+
playtimeLimit: PlaytimeLimit;
|
|
2081
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
2082
|
+
schoolPlaytimeLimit?: Maybe<SchoolPlaytimeLimit>;
|
|
2083
|
+
schoolTeachersCount: Scalars['Int']['output'];
|
|
2084
|
+
subscriptions?: Maybe<Array<Maybe<SubscriberSubscription>>>;
|
|
2085
|
+
teachers?: Maybe<Array<Maybe<Teacher>>>;
|
|
2086
|
+
};
|
|
2087
|
+
type SchoolAdminSchool = {
|
|
2088
|
+
__typename?: 'SchoolAdminSchool';
|
|
2089
|
+
canSeePerformanceData?: Maybe<Scalars['Boolean']['output']>;
|
|
2090
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2091
|
+
school?: Maybe<School>;
|
|
2092
|
+
};
|
|
2093
|
+
type SchoolAndTeachersForDistrictAssignment = {
|
|
2094
|
+
__typename?: 'SchoolAndTeachersForDistrictAssignment';
|
|
2095
|
+
district?: Maybe<District>;
|
|
2096
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2097
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
2098
|
+
teachers?: Maybe<Array<Maybe<TeacherForDistrictAssignment>>>;
|
|
2099
|
+
};
|
|
2100
|
+
type SchoolPlaytimeLimit = {
|
|
2101
|
+
__typename?: 'SchoolPlaytimeLimit';
|
|
2102
|
+
durationS?: Maybe<Scalars['Int']['output']>;
|
|
2103
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2104
|
+
id: Scalars['ID']['output'];
|
|
2105
|
+
isEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
2106
|
+
schoolId: Scalars['ID']['output'];
|
|
2107
|
+
};
|
|
2108
|
+
type SchoolSetting = {
|
|
2109
|
+
__typename?: 'SchoolSetting';
|
|
2110
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2111
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
2112
|
+
isSubscriptionAutoRenew?: Maybe<Scalars['Boolean']['output']>;
|
|
2113
|
+
paidExpiresAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
2114
|
+
};
|
|
2115
|
+
type SchoolsList = {
|
|
2116
|
+
__typename?: 'SchoolsList';
|
|
2117
|
+
entries?: Maybe<Array<Maybe<School>>>;
|
|
2118
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
2119
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2120
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
2121
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2122
|
+
};
|
|
2123
|
+
type SelectOption = {
|
|
2124
|
+
__typename?: 'SelectOption';
|
|
2125
|
+
grades?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
2126
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
2127
|
+
value?: Maybe<Scalars['ID']['output']>;
|
|
2128
|
+
};
|
|
2129
|
+
declare enum SortDirectionType {
|
|
2130
|
+
Asc = "ASC",
|
|
2131
|
+
Desc = "DESC"
|
|
2132
|
+
}
|
|
2133
|
+
type Standard = {
|
|
2134
|
+
__typename?: 'Standard';
|
|
2135
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2136
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
2137
|
+
publicName?: Maybe<Scalars['String']['output']>;
|
|
2138
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
2139
|
+
};
|
|
2140
|
+
type StandardLearningObjectivesArgs = {
|
|
2141
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2142
|
+
};
|
|
2143
|
+
type StandardUnit = {
|
|
2144
|
+
__typename?: 'StandardUnit';
|
|
2145
|
+
gradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
2146
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2147
|
+
learningObjectiveUnits?: Maybe<Array<Maybe<LearningObjectiveUnit>>>;
|
|
2148
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2149
|
+
unitCode?: Maybe<Scalars['String']['output']>;
|
|
2150
|
+
unitNumber?: Maybe<Scalars['String']['output']>;
|
|
2151
|
+
};
|
|
2152
|
+
type State = {
|
|
2153
|
+
__typename?: 'State';
|
|
2154
|
+
abbrev?: Maybe<Scalars['String']['output']>;
|
|
2155
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2156
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
2157
|
+
};
|
|
2158
|
+
type StatesList = {
|
|
2159
|
+
__typename?: 'StatesList';
|
|
2160
|
+
entries?: Maybe<Array<Maybe<State>>>;
|
|
2161
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
2162
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2163
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
2164
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2165
|
+
};
|
|
2166
|
+
type Student = {
|
|
2167
|
+
__typename?: 'Student';
|
|
2168
|
+
activityAssignmentCount?: Maybe<Scalars['Int']['output']>;
|
|
2169
|
+
activityCount?: Maybe<Scalars['Int']['output']>;
|
|
2170
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2171
|
+
createdByTeacher?: Maybe<Teacher>;
|
|
2172
|
+
createdByTeacherId?: Maybe<Scalars['Int']['output']>;
|
|
2173
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2174
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
2175
|
+
groups?: Maybe<Array<Maybe<StudentGroup>>>;
|
|
2176
|
+
groups2?: Maybe<Array<Group>>;
|
|
2177
|
+
hasUser?: Maybe<Scalars['Boolean']['output']>;
|
|
2178
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2179
|
+
language?: Maybe<Language>;
|
|
2180
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
2181
|
+
mathGradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
2182
|
+
parent?: Maybe<Parent>;
|
|
2183
|
+
player?: Maybe<TeacherPlayer>;
|
|
2184
|
+
primaryTeacher?: Maybe<Teacher>;
|
|
2185
|
+
primaryTeacherReason?: Maybe<Scalars['String']['output']>;
|
|
2186
|
+
scienceGradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
2187
|
+
socialStudiesGradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
2188
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2189
|
+
user?: Maybe<StudentUser>;
|
|
2190
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
2191
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
2192
|
+
};
|
|
2193
|
+
type StudentActivityAssignmentCountArgs = {
|
|
2194
|
+
schoolYear?: InputMaybe<Scalars['String']['input']>;
|
|
2195
|
+
};
|
|
2196
|
+
type StudentActivityCountArgs = {
|
|
2197
|
+
schoolYear?: InputMaybe<Scalars['String']['input']>;
|
|
2198
|
+
};
|
|
2199
|
+
type StudentActivityDistributionRow = {
|
|
2200
|
+
__typename?: 'StudentActivityDistributionRow';
|
|
2201
|
+
bucketElevenToTwentyFour?: Maybe<Scalars['Int']['output']>;
|
|
2202
|
+
bucketFiftyPlus?: Maybe<Scalars['Int']['output']>;
|
|
2203
|
+
bucketOneToTen?: Maybe<Scalars['Int']['output']>;
|
|
2204
|
+
bucketTwentyFiveToFortyNine?: Maybe<Scalars['Int']['output']>;
|
|
2205
|
+
school?: Maybe<Scalars['String']['output']>;
|
|
2206
|
+
schoolId?: Maybe<Scalars['Int']['output']>;
|
|
2207
|
+
studentGradeBand?: Maybe<Scalars['String']['output']>;
|
|
2208
|
+
};
|
|
2209
|
+
type StudentGroup = {
|
|
2210
|
+
__typename?: 'StudentGroup';
|
|
2211
|
+
group?: Maybe<Group>;
|
|
2212
|
+
groupId?: Maybe<Scalars['ID']['output']>;
|
|
2213
|
+
student?: Maybe<Student>;
|
|
2214
|
+
studentId?: Maybe<Scalars['ID']['output']>;
|
|
2215
|
+
};
|
|
2216
|
+
type StudentUser = {
|
|
2217
|
+
__typename?: 'StudentUser';
|
|
2218
|
+
assignedFluencyFocus?: Maybe<FluencyFocus>;
|
|
2219
|
+
assignedFocusAreas?: Maybe<Array<Maybe<TeacherFocusArea>>>;
|
|
2220
|
+
assignmentPerformance?: Maybe<AssignmentPerformance>;
|
|
2221
|
+
avatar?: Maybe<Avatar>;
|
|
2222
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
2223
|
+
fluencyDailySummaries?: Maybe<Array<Maybe<FluencyDailySummaryByPlayer>>>;
|
|
2224
|
+
fluencySessions?: Maybe<Array<Maybe<FluencySession>>>;
|
|
2225
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
2226
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2227
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
2228
|
+
mostRecentAddSubFocus?: Maybe<FluencyFocusType>;
|
|
2229
|
+
mostRecentMulDivFocus?: Maybe<FluencyFocusType>;
|
|
2230
|
+
passwordEncrypted?: Maybe<Scalars['String']['output']>;
|
|
2231
|
+
passwordSetAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2232
|
+
passwordSetByRole?: Maybe<Scalars['String']['output']>;
|
|
2233
|
+
passwordSetByUserId?: Maybe<Scalars['ID']['output']>;
|
|
2234
|
+
playtimeDailySummaries?: Maybe<Array<Maybe<Playtime>>>;
|
|
2235
|
+
rosteringSources?: Maybe<RosteringSource>;
|
|
2236
|
+
studentId?: Maybe<Scalars['ID']['output']>;
|
|
2237
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
2238
|
+
};
|
|
2239
|
+
type StudentUserAssignmentPerformanceArgs = {
|
|
2240
|
+
schoolYear?: InputMaybe<Scalars['String']['input']>;
|
|
2241
|
+
};
|
|
2242
|
+
type StudentUserFluencyDailySummariesArgs = {
|
|
2243
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2244
|
+
excludeTypes?: InputMaybe<Array<InputMaybe<PlaytimeType>>>;
|
|
2245
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2246
|
+
types?: InputMaybe<Array<PlaytimeType>>;
|
|
2247
|
+
};
|
|
2248
|
+
type StudentUserFluencySessionsArgs = {
|
|
2249
|
+
filter?: InputMaybe<FluencySessionFilter>;
|
|
2250
|
+
};
|
|
2251
|
+
type StudentUserPlaytimeDailySummariesArgs = {
|
|
2252
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2253
|
+
excludeTypes?: InputMaybe<Array<InputMaybe<PlaytimeType>>>;
|
|
2254
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2255
|
+
types?: InputMaybe<Array<PlaytimeType>>;
|
|
2256
|
+
};
|
|
2257
|
+
type Subject = {
|
|
2258
|
+
__typename?: 'Subject';
|
|
2259
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
2260
|
+
iconSvgName?: Maybe<Scalars['String']['output']>;
|
|
2261
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2262
|
+
imageKey?: Maybe<Scalars['String']['output']>;
|
|
2263
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
2264
|
+
learningObjectives?: Maybe<Array<Maybe<LearningObjective>>>;
|
|
2265
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2266
|
+
sortOrder?: Maybe<Scalars['String']['output']>;
|
|
2267
|
+
standard?: Maybe<Scalars['String']['output']>;
|
|
2268
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
2269
|
+
subjectArea?: Maybe<Scalars['String']['output']>;
|
|
2270
|
+
};
|
|
2271
|
+
type Subscriber = {
|
|
2272
|
+
__typename?: 'Subscriber';
|
|
2273
|
+
districtId?: Maybe<Scalars['Int']['output']>;
|
|
2274
|
+
id: Scalars['ID']['output'];
|
|
2275
|
+
name: Scalars['String']['output'];
|
|
2276
|
+
schoolId?: Maybe<Scalars['Int']['output']>;
|
|
2277
|
+
type: Scalars['String']['output'];
|
|
2278
|
+
userId?: Maybe<Scalars['Int']['output']>;
|
|
2279
|
+
};
|
|
2280
|
+
type SubscriberSubscription = {
|
|
2281
|
+
__typename?: 'SubscriberSubscription';
|
|
2282
|
+
endAt: Scalars['DateTime']['output'];
|
|
2283
|
+
enforceSeats: Scalars['Boolean']['output'];
|
|
2284
|
+
id: Scalars['ID']['output'];
|
|
2285
|
+
maxUsers: Scalars['Int']['output'];
|
|
2286
|
+
product?: Maybe<Product>;
|
|
2287
|
+
seatsCount: Scalars['Int']['output'];
|
|
2288
|
+
startAt: Scalars['DateTime']['output'];
|
|
2289
|
+
subscriber?: Maybe<Subscriber>;
|
|
2290
|
+
subscriptionProgramId?: Maybe<Scalars['ID']['output']>;
|
|
2291
|
+
};
|
|
2292
|
+
type SubscriptionCode = {
|
|
2293
|
+
__typename?: 'SubscriptionCode';
|
|
2294
|
+
code: Scalars['String']['output'];
|
|
2295
|
+
endAt: Scalars['DateTime']['output'];
|
|
2296
|
+
id: Scalars['ID']['output'];
|
|
2297
|
+
maxUsers: Scalars['Int']['output'];
|
|
2298
|
+
numberOfUsers?: Maybe<Scalars['Int']['output']>;
|
|
2299
|
+
startAt: Scalars['DateTime']['output'];
|
|
2300
|
+
subscriptionId: Scalars['ID']['output'];
|
|
2301
|
+
};
|
|
2302
|
+
type SubscriptionCodesList = {
|
|
2303
|
+
__typename?: 'SubscriptionCodesList';
|
|
2304
|
+
entries?: Maybe<Array<Maybe<SubscriptionCode>>>;
|
|
2305
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
2306
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2307
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
2308
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2309
|
+
};
|
|
2310
|
+
type SubscriptionProgram = {
|
|
2311
|
+
__typename?: 'SubscriptionProgram';
|
|
2312
|
+
id: Scalars['ID']['output'];
|
|
2313
|
+
name: Scalars['String']['output'];
|
|
2314
|
+
};
|
|
2315
|
+
type SubscriptionProgramList = {
|
|
2316
|
+
__typename?: 'SubscriptionProgramList';
|
|
2317
|
+
entries?: Maybe<Array<Maybe<SubscriptionProgram>>>;
|
|
2318
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
2319
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2320
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
2321
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2322
|
+
};
|
|
2323
|
+
type SubscriptionSeatUser = {
|
|
2324
|
+
__typename?: 'SubscriptionSeatUser';
|
|
2325
|
+
id: Scalars['ID']['output'];
|
|
2326
|
+
subscription: SubscriberSubscription;
|
|
2327
|
+
user: User;
|
|
2328
|
+
};
|
|
2329
|
+
type Teacher = {
|
|
2330
|
+
__typename?: 'Teacher';
|
|
2331
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2332
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2333
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2334
|
+
district?: Maybe<District>;
|
|
2335
|
+
districtId?: Maybe<Scalars['ID']['output']>;
|
|
2336
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2337
|
+
emailBouncedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2338
|
+
familyName?: Maybe<Scalars['String']['output']>;
|
|
2339
|
+
givenName?: Maybe<Scalars['String']['output']>;
|
|
2340
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2341
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2342
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
2343
|
+
referralCode?: Maybe<Scalars['String']['output']>;
|
|
2344
|
+
referredByCode?: Maybe<Scalars['String']['output']>;
|
|
2345
|
+
registrationCodeEntered?: Maybe<Scalars['String']['output']>;
|
|
2346
|
+
school?: Maybe<School>;
|
|
2347
|
+
schoolId?: Maybe<Scalars['ID']['output']>;
|
|
2348
|
+
user?: Maybe<TeacherUser>;
|
|
2349
|
+
};
|
|
2350
|
+
type TeacherFocusArea = {
|
|
2351
|
+
__typename?: 'TeacherFocusArea';
|
|
2352
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2353
|
+
insertedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2354
|
+
learningObjective?: Maybe<LearningObjective>;
|
|
2355
|
+
learningObjectiveId?: Maybe<Scalars['ID']['output']>;
|
|
2356
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
2357
|
+
playerUser?: Maybe<StudentUser>;
|
|
2358
|
+
playerUserId?: Maybe<Scalars['ID']['output']>;
|
|
2359
|
+
teacherUserId?: Maybe<Scalars['ID']['output']>;
|
|
2360
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2361
|
+
};
|
|
2362
|
+
type TeacherForAssignmentSet = {
|
|
2363
|
+
__typename?: 'TeacherForAssignmentSet';
|
|
2364
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2365
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
2366
|
+
id: Scalars['ID']['output'];
|
|
2367
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
2368
|
+
};
|
|
2369
|
+
type TeacherForDistrictAssignment = {
|
|
2370
|
+
__typename?: 'TeacherForDistrictAssignment';
|
|
2371
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2372
|
+
familyName?: Maybe<Scalars['String']['output']>;
|
|
2373
|
+
givenName?: Maybe<Scalars['String']['output']>;
|
|
2374
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2375
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
2376
|
+
user?: Maybe<UserForDistrictAssignment>;
|
|
2377
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
2378
|
+
};
|
|
2379
|
+
type TeacherGradeCount = {
|
|
2380
|
+
__typename?: 'TeacherGradeCount';
|
|
2381
|
+
count: Scalars['Int']['output'];
|
|
2382
|
+
grade: Scalars['Int']['output'];
|
|
2383
|
+
};
|
|
2384
|
+
type TeacherPlayer = {
|
|
2385
|
+
__typename?: 'TeacherPlayer';
|
|
2386
|
+
buddyCode?: Maybe<Scalars['String']['output']>;
|
|
2387
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2388
|
+
};
|
|
2389
|
+
type TeacherPlaytimeLimit = {
|
|
2390
|
+
__typename?: 'TeacherPlaytimeLimit';
|
|
2391
|
+
durationS?: Maybe<Scalars['Int']['output']>;
|
|
2392
|
+
expiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2393
|
+
id: Scalars['ID']['output'];
|
|
2394
|
+
isEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
2395
|
+
teacherUserId: Scalars['ID']['output'];
|
|
2396
|
+
};
|
|
2397
|
+
type TeacherSetting = {
|
|
2398
|
+
__typename?: 'TeacherSetting';
|
|
2399
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2400
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
2401
|
+
isSubscriptionAutoRenew?: Maybe<Scalars['Boolean']['output']>;
|
|
2402
|
+
paidExpiresAt?: Maybe<Scalars['NaiveDateTime']['output']>;
|
|
2403
|
+
};
|
|
2404
|
+
type TeacherUser = {
|
|
2405
|
+
__typename?: 'TeacherUser';
|
|
2406
|
+
gradeLevel?: Maybe<Scalars['String']['output']>;
|
|
2407
|
+
gradeLevels?: Maybe<Array<Maybe<UserSubjectGradeLevel>>>;
|
|
2408
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2409
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2410
|
+
isDistrictAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2411
|
+
isSchoolAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2412
|
+
teacherId?: Maybe<Scalars['ID']['output']>;
|
|
2413
|
+
};
|
|
2414
|
+
type UsageChartData = {
|
|
2415
|
+
__typename?: 'UsageChartData';
|
|
2416
|
+
monthlyActiveStudents?: Maybe<Array<Maybe<MonthlyActiveStudent>>>;
|
|
2417
|
+
monthlyActiveTeachers?: Maybe<Array<Maybe<MonthlyActiveTeacher>>>;
|
|
2418
|
+
monthlyAssignments?: Maybe<Array<Maybe<MonthlyAssignment>>>;
|
|
2419
|
+
monthlyMinigames?: Maybe<Array<Maybe<MonthlyMinigame>>>;
|
|
2420
|
+
monthlyPlaytime?: Maybe<Array<Maybe<MonthlyPlaytime>>>;
|
|
2421
|
+
monthlyQuestions?: Maybe<Array<Maybe<MonthlyQuestion>>>;
|
|
2422
|
+
};
|
|
2423
|
+
type UsageFilters = {
|
|
2424
|
+
__typename?: 'UsageFilters';
|
|
2425
|
+
dateEnd?: Maybe<Scalars['String']['output']>;
|
|
2426
|
+
dateStart?: Maybe<Scalars['String']['output']>;
|
|
2427
|
+
districtId?: Maybe<Scalars['Int']['output']>;
|
|
2428
|
+
gradeLevel?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2429
|
+
paid?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2430
|
+
schoolIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
2431
|
+
subjectArea?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2432
|
+
teacherGradeLevels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2433
|
+
};
|
|
2434
|
+
type UsageReport = {
|
|
2435
|
+
__typename?: 'UsageReport';
|
|
2436
|
+
charts?: Maybe<UsageChartData>;
|
|
2437
|
+
filters?: Maybe<UsageFilters>;
|
|
2438
|
+
studentActivityDistribution?: Maybe<Array<Maybe<StudentActivityDistributionRow>>>;
|
|
2439
|
+
tables?: Maybe<UsageTables>;
|
|
2440
|
+
};
|
|
2441
|
+
type UsageReportChartResult = {
|
|
2442
|
+
__typename?: 'UsageReportChartResult';
|
|
2443
|
+
data?: Maybe<Scalars['Json']['output']>;
|
|
2444
|
+
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
2445
|
+
};
|
|
2446
|
+
type UsageReportStudentActivityResult = {
|
|
2447
|
+
__typename?: 'UsageReportStudentActivityResult';
|
|
2448
|
+
data?: Maybe<Array<Maybe<StudentActivityDistributionRow>>>;
|
|
2449
|
+
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
2450
|
+
};
|
|
2451
|
+
type UsageReportTableResult = {
|
|
2452
|
+
__typename?: 'UsageReportTableResult';
|
|
2453
|
+
data?: Maybe<Scalars['Json']['output']>;
|
|
2454
|
+
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
2455
|
+
};
|
|
2456
|
+
type UsageTables = {
|
|
2457
|
+
__typename?: 'UsageTables';
|
|
2458
|
+
assignedActivityBySchool?: Maybe<Array<Maybe<AssignedActivityBySchoolRow>>>;
|
|
2459
|
+
assignedActivityByStudent?: Maybe<Array<Maybe<AssignedActivityByStudentRow>>>;
|
|
2460
|
+
assignedActivityByTeacher?: Maybe<Array<Maybe<AssignedActivityByTeacherRow>>>;
|
|
2461
|
+
awakeningActivityBySchool?: Maybe<Array<Maybe<AwakeningActivityBySchoolRow>>>;
|
|
2462
|
+
};
|
|
2463
|
+
type User = {
|
|
2464
|
+
__typename?: 'User';
|
|
2465
|
+
districtRegions?: Maybe<Array<Maybe<DistrictRegion>>>;
|
|
2466
|
+
effectiveSetting?: Maybe<TeacherSetting>;
|
|
2467
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
2468
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
2469
|
+
googleEmail?: Maybe<Scalars['String']['output']>;
|
|
2470
|
+
googleUniqueId?: Maybe<Scalars['String']['output']>;
|
|
2471
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2472
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2473
|
+
isDistrictAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2474
|
+
isSchoolAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2475
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
2476
|
+
lastSignInAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2477
|
+
mathStandard?: Maybe<Standard>;
|
|
2478
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2479
|
+
playtimeLimit: PlaytimeLimit;
|
|
2480
|
+
schoolAdminSchools?: Maybe<Array<Maybe<SchoolAdminSchool>>>;
|
|
2481
|
+
scienceStandard?: Maybe<Standard>;
|
|
2482
|
+
signInCount?: Maybe<Scalars['Int']['output']>;
|
|
2483
|
+
socialStudiesStandard?: Maybe<Standard>;
|
|
2484
|
+
studentId?: Maybe<Scalars['ID']['output']>;
|
|
2485
|
+
subscriptionSeats?: Maybe<Array<Maybe<SubscriptionSeatUser>>>;
|
|
2486
|
+
subscriptions?: Maybe<Array<Maybe<SubscriberSubscription>>>;
|
|
2487
|
+
teacher?: Maybe<Teacher>;
|
|
2488
|
+
teacherId?: Maybe<Scalars['ID']['output']>;
|
|
2489
|
+
teacherPlaytimeLimit?: Maybe<TeacherPlaytimeLimit>;
|
|
2490
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
2491
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
2492
|
+
};
|
|
2493
|
+
type UserFilter = {
|
|
2494
|
+
districtIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2495
|
+
ids?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2496
|
+
isDistrictAdmin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2497
|
+
isSchoolAdmin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2498
|
+
roles?: InputMaybe<Array<UserFilterRole>>;
|
|
2499
|
+
schoolIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2500
|
+
stateIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
2501
|
+
};
|
|
2502
|
+
declare enum UserFilterRole {
|
|
2503
|
+
/** The user is an administrator */
|
|
2504
|
+
Admin = "ADMIN",
|
|
2505
|
+
/** The user is a student */
|
|
2506
|
+
Student = "STUDENT",
|
|
2507
|
+
/** The user is a teacher */
|
|
2508
|
+
Teacher = "TEACHER"
|
|
2509
|
+
}
|
|
2510
|
+
type UserForDistrictAssignment = {
|
|
2511
|
+
__typename?: 'UserForDistrictAssignment';
|
|
2512
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2513
|
+
};
|
|
2514
|
+
type UserSubjectGradeLevel = {
|
|
2515
|
+
__typename?: 'UserSubjectGradeLevel';
|
|
2516
|
+
gradeLevel?: Maybe<Scalars['Int']['output']>;
|
|
2517
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
2518
|
+
};
|
|
2519
|
+
type UsersList = {
|
|
2520
|
+
__typename?: 'UsersList';
|
|
2521
|
+
entries?: Maybe<Array<Maybe<User>>>;
|
|
2522
|
+
pageNumber?: Maybe<Scalars['Int']['output']>;
|
|
2523
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
2524
|
+
totalEntries?: Maybe<Scalars['Int']['output']>;
|
|
2525
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
2526
|
+
};
|
|
2527
|
+
type Video = {
|
|
2528
|
+
__typename?: 'Video';
|
|
2529
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
2530
|
+
endsAt?: Maybe<Scalars['Int']['output']>;
|
|
2531
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2532
|
+
playDuration?: Maybe<Scalars['Int']['output']>;
|
|
2533
|
+
startsAt?: Maybe<Scalars['Int']['output']>;
|
|
2534
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
2535
|
+
title: Scalars['String']['output'];
|
|
2536
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
2537
|
+
url: Scalars['String']['output'];
|
|
2538
|
+
vimeoId?: Maybe<Scalars['String']['output']>;
|
|
2539
|
+
youtubeId?: Maybe<Scalars['String']['output']>;
|
|
2540
|
+
};
|
|
2541
|
+
type GetDistrictsQueryVariables = Exact<{
|
|
2542
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>> | InputMaybe<Filter>>;
|
|
2543
|
+
}>;
|
|
2544
|
+
type GetDistrictsQuery = {
|
|
2545
|
+
__typename?: 'RootQueryType';
|
|
2546
|
+
districts?: {
|
|
2547
|
+
__typename?: 'DistrictsList';
|
|
2548
|
+
totalPages?: number | null;
|
|
2549
|
+
totalEntries?: number | null;
|
|
2550
|
+
pageNumber?: number | null;
|
|
2551
|
+
entries?: Array<{
|
|
2552
|
+
__typename?: 'District';
|
|
2553
|
+
id?: string | null;
|
|
2554
|
+
district?: string | null;
|
|
2555
|
+
districtSchoolsCount: number;
|
|
2556
|
+
districtTeachersCount: number;
|
|
2557
|
+
ncesDistrictId?: string | null;
|
|
2558
|
+
state?: {
|
|
2559
|
+
__typename?: 'State';
|
|
2560
|
+
id?: string | null;
|
|
2561
|
+
state?: string | null;
|
|
2562
|
+
abbrev?: string | null;
|
|
2563
|
+
} | null;
|
|
2564
|
+
subscriptions?: Array<{
|
|
2565
|
+
__typename?: 'SubscriberSubscription';
|
|
2566
|
+
id: string;
|
|
2567
|
+
endAt: any;
|
|
2568
|
+
product?: {
|
|
2569
|
+
__typename?: 'Product';
|
|
2570
|
+
id: string;
|
|
2571
|
+
name?: string | null;
|
|
2572
|
+
} | null;
|
|
2573
|
+
} | null> | null;
|
|
2574
|
+
} | null> | null;
|
|
2575
|
+
} | null;
|
|
2576
|
+
};
|
|
2577
|
+
type GetStatesQueryVariables = Exact<{
|
|
2578
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>> | InputMaybe<Filter>>;
|
|
2579
|
+
}>;
|
|
2580
|
+
type GetStatesQuery = {
|
|
2581
|
+
__typename?: 'RootQueryType';
|
|
2582
|
+
states?: {
|
|
2583
|
+
__typename?: 'StatesList';
|
|
2584
|
+
totalPages?: number | null;
|
|
2585
|
+
totalEntries?: number | null;
|
|
2586
|
+
pageNumber?: number | null;
|
|
2587
|
+
entries?: Array<{
|
|
2588
|
+
__typename?: 'State';
|
|
2589
|
+
id?: string | null;
|
|
2590
|
+
state?: string | null;
|
|
2591
|
+
} | null> | null;
|
|
2592
|
+
} | null;
|
|
2593
|
+
};
|
|
2594
|
+
type GetSchoolsQueryVariables = Exact<{
|
|
2595
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>> | InputMaybe<Filter>>;
|
|
2596
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2597
|
+
}>;
|
|
2598
|
+
type GetSchoolsQuery = {
|
|
2599
|
+
__typename?: 'RootQueryType';
|
|
2600
|
+
schools?: {
|
|
2601
|
+
__typename?: 'SchoolsList';
|
|
2602
|
+
totalPages?: number | null;
|
|
2603
|
+
totalEntries?: number | null;
|
|
2604
|
+
pageNumber?: number | null;
|
|
2605
|
+
entries?: Array<{
|
|
2606
|
+
__typename?: 'School';
|
|
2607
|
+
id?: string | null;
|
|
2608
|
+
school?: string | null;
|
|
2609
|
+
ncesSchoolId?: string | null;
|
|
2610
|
+
districtRegion?: {
|
|
2611
|
+
__typename?: 'DistrictRegion';
|
|
2612
|
+
id?: string | null;
|
|
2613
|
+
name?: string | null;
|
|
2614
|
+
} | null;
|
|
2615
|
+
} | null> | null;
|
|
2616
|
+
} | null;
|
|
2617
|
+
};
|
|
2618
|
+
type GetUsersQueryVariables = Exact<{
|
|
2619
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>> | InputMaybe<Filter>>;
|
|
2620
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2621
|
+
}>;
|
|
2622
|
+
type GetUsersQuery = {
|
|
2623
|
+
__typename?: 'RootQueryType';
|
|
2624
|
+
users?: {
|
|
2625
|
+
__typename?: 'UsersList';
|
|
2626
|
+
pageNumber?: number | null;
|
|
2627
|
+
pageSize?: number | null;
|
|
2628
|
+
totalEntries?: number | null;
|
|
2629
|
+
totalPages?: number | null;
|
|
2630
|
+
entries?: Array<{
|
|
2631
|
+
__typename?: 'User';
|
|
2632
|
+
id?: string | null;
|
|
2633
|
+
firstName?: string | null;
|
|
2634
|
+
lastName?: string | null;
|
|
2635
|
+
email?: string | null;
|
|
2636
|
+
googleUniqueId?: string | null;
|
|
2637
|
+
googleEmail?: string | null;
|
|
2638
|
+
} | null> | null;
|
|
2639
|
+
} | null;
|
|
2640
|
+
};
|
|
2641
|
+
type GetDistrictRegionsQueryVariables = Exact<{
|
|
2642
|
+
filters?: InputMaybe<Array<InputMaybe<Filter>> | InputMaybe<Filter>>;
|
|
2643
|
+
}>;
|
|
2644
|
+
type GetDistrictRegionsQuery = {
|
|
2645
|
+
__typename?: 'RootQueryType';
|
|
2646
|
+
districtRegions?: {
|
|
2647
|
+
__typename?: 'DistrictRegionsList';
|
|
2648
|
+
entries?: Array<{
|
|
2649
|
+
__typename?: 'DistrictRegion';
|
|
2650
|
+
id?: string | null;
|
|
2651
|
+
name?: string | null;
|
|
2652
|
+
district?: {
|
|
2653
|
+
__typename?: 'District';
|
|
2654
|
+
id?: string | null;
|
|
2655
|
+
district?: string | null;
|
|
2656
|
+
} | null;
|
|
2657
|
+
} | null> | null;
|
|
2658
|
+
} | null;
|
|
2659
|
+
};
|
|
2660
|
+
declare const GetDistrictsDocument: TypedDocumentNode<GetDistrictsQuery, GetDistrictsQueryVariables>;
|
|
2661
|
+
declare const GetStatesDocument: TypedDocumentNode<GetStatesQuery, GetStatesQueryVariables>;
|
|
2662
|
+
declare const GetSchoolsDocument: TypedDocumentNode<GetSchoolsQuery, GetSchoolsQueryVariables>;
|
|
2663
|
+
declare const GetUsersDocument: TypedDocumentNode<GetUsersQuery, GetUsersQueryVariables>;
|
|
2664
|
+
declare const GetDistrictRegionsDocument: TypedDocumentNode<GetDistrictRegionsQuery, GetDistrictRegionsQueryVariables>;
|
|
2665
|
+
|
|
2666
|
+
type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>> = TDocumentType extends DocumentTypeDecoration<infer TType, any> ? [TType] extends [{
|
|
2667
|
+
' $fragmentName'?: infer TKey;
|
|
2668
|
+
}] ? TKey extends string ? {
|
|
2669
|
+
' $fragmentRefs'?: {
|
|
2670
|
+
[key in TKey]: TType;
|
|
2671
|
+
};
|
|
2672
|
+
} : never : never : never;
|
|
2673
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
|
|
2674
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
|
|
2675
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
|
|
2676
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
|
|
2677
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
|
|
2678
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
|
|
2679
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
|
|
2680
|
+
declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
|
|
2681
|
+
declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
|
|
2682
|
+
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>;
|
|
2683
|
+
|
|
2684
|
+
/**
|
|
2685
|
+
* Map of all GraphQL operations in the project.
|
|
2686
|
+
*
|
|
2687
|
+
* This map has several performance disadvantages:
|
|
2688
|
+
* 1. It is not tree-shakeable, so it will include all operations in the project.
|
|
2689
|
+
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
|
|
2690
|
+
* 3. It does not support dead code elimination, so it will add unused operations.
|
|
2691
|
+
*
|
|
2692
|
+
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
2693
|
+
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
|
|
2694
|
+
*/
|
|
2695
|
+
type Documents = {
|
|
2696
|
+
"\n query GetDistricts($filters: [Filter]) {\n districts: districts2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n district\n districtSchoolsCount\n districtTeachersCount\n ncesDistrictId\n state {\n id\n state\n abbrev\n }\n subscriptions {\n id\n endAt\n product {\n id\n name\n }\n }\n }\n }\n }\n": typeof GetDistrictsDocument;
|
|
2697
|
+
"\n query GetStates($filters: [Filter]) {\n states: states2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n state\n }\n }\n }\n": typeof GetStatesDocument;
|
|
2698
|
+
"\n query GetSchools($filters: [Filter], $page: Int) {\n schools: schools2(filters: $filters, page: $page) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n school\n ncesSchoolId\n districtRegion {\n id\n name\n }\n }\n }\n }\n": typeof GetSchoolsDocument;
|
|
2699
|
+
"\n query GetUsers($filters: [Filter], $page: Int) {\n users: users2(page: $page, filters: $filters) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n entries {\n id\n firstName\n lastName\n email\n googleUniqueId\n googleEmail\n }\n }\n }\n": typeof GetUsersDocument;
|
|
2700
|
+
"\n query GetDistrictRegions($filters: [Filter]) {\n districtRegions(filters: $filters) {\n entries {\n id\n name\n district {\n id\n district\n }\n }\n }\n }\n": typeof GetDistrictRegionsDocument;
|
|
2701
|
+
};
|
|
2702
|
+
declare const documents: Documents;
|
|
2703
|
+
/**
|
|
2704
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2705
|
+
*
|
|
2706
|
+
*
|
|
2707
|
+
* @example
|
|
2708
|
+
* ```ts
|
|
2709
|
+
* const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);
|
|
2710
|
+
* ```
|
|
2711
|
+
*
|
|
2712
|
+
* The query argument is unknown!
|
|
2713
|
+
* Please regenerate the types.
|
|
2714
|
+
*/
|
|
2715
|
+
declare function graphql(source: string): unknown;
|
|
2716
|
+
/**
|
|
2717
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2718
|
+
*/
|
|
2719
|
+
declare function graphql(source: "\n query GetDistricts($filters: [Filter]) {\n districts: districts2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n district\n districtSchoolsCount\n districtTeachersCount\n ncesDistrictId\n state {\n id\n state\n abbrev\n }\n subscriptions {\n id\n endAt\n product {\n id\n name\n }\n }\n }\n }\n }\n"): (typeof documents)["\n query GetDistricts($filters: [Filter]) {\n districts: districts2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n district\n districtSchoolsCount\n districtTeachersCount\n ncesDistrictId\n state {\n id\n state\n abbrev\n }\n subscriptions {\n id\n endAt\n product {\n id\n name\n }\n }\n }\n }\n }\n"];
|
|
2720
|
+
/**
|
|
2721
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2722
|
+
*/
|
|
2723
|
+
declare function graphql(source: "\n query GetStates($filters: [Filter]) {\n states: states2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n state\n }\n }\n }\n"): (typeof documents)["\n query GetStates($filters: [Filter]) {\n states: states2(filters: $filters) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n state\n }\n }\n }\n"];
|
|
2724
|
+
/**
|
|
2725
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2726
|
+
*/
|
|
2727
|
+
declare function graphql(source: "\n query GetSchools($filters: [Filter], $page: Int) {\n schools: schools2(filters: $filters, page: $page) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n school\n ncesSchoolId\n districtRegion {\n id\n name\n }\n }\n }\n }\n"): (typeof documents)["\n query GetSchools($filters: [Filter], $page: Int) {\n schools: schools2(filters: $filters, page: $page) {\n totalPages\n totalEntries\n pageNumber\n entries {\n id\n school\n ncesSchoolId\n districtRegion {\n id\n name\n }\n }\n }\n }\n"];
|
|
2728
|
+
/**
|
|
2729
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2730
|
+
*/
|
|
2731
|
+
declare function graphql(source: "\n query GetUsers($filters: [Filter], $page: Int) {\n users: users2(page: $page, filters: $filters) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n entries {\n id\n firstName\n lastName\n email\n googleUniqueId\n googleEmail\n }\n }\n }\n"): (typeof documents)["\n query GetUsers($filters: [Filter], $page: Int) {\n users: users2(page: $page, filters: $filters) {\n pageNumber\n pageSize\n totalEntries\n totalPages\n entries {\n id\n firstName\n lastName\n email\n googleUniqueId\n googleEmail\n }\n }\n }\n"];
|
|
2732
|
+
/**
|
|
2733
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
2734
|
+
*/
|
|
2735
|
+
declare function graphql(source: "\n query GetDistrictRegions($filters: [Filter]) {\n districtRegions(filters: $filters) {\n entries {\n id\n name\n district {\n id\n district\n }\n }\n }\n }\n"): (typeof documents)["\n query GetDistrictRegions($filters: [Filter]) {\n districtRegions(filters: $filters) {\n entries {\n id\n name\n district {\n id\n district\n }\n }\n }\n }\n"];
|
|
2736
|
+
type DocumentType<TDocumentNode extends TypedDocumentNode<any, any>> = TDocumentNode extends TypedDocumentNode<infer TType, any> ? TType : never;
|
|
2737
|
+
|
|
2738
|
+
export { type AbacAction, type AbacGrade, type AbacPolicy, type AbacPolicyUpdate, type AccountConfig, type AccountConfigsList, type Activity, type ActivityInputV2, type ActivityQuestion, type ActivityQuestionInput, type ActivityV2, type AnalyticsEvent, type AnalyticsEventInput, type AnalyticsObject, type AnalyticsObjectInput, type Answer, type AnswerExplanation, type Assessment, type AssessmentLearningObjective, type AssessmentQuestion, type AssignedActivityBySchoolRow, type AssignedActivityByStudentRow, type AssignedActivityByTeacherRow, type Assignment, type AssignmentAssignedPlayersCounts, type AssignmentCreatedBy, AssignmentOwnershipType, type AssignmentPerformance, type AssignmentPerformancePlayerAssignment, type AssignmentSet, type AssignmentSetAssignment, type AssignmentSetAssignmentWithTeacher, type AssignmentSetAssignmentsWithTeachers, type AssignmentSetGrade, type AssignmentSetList, type AssignmentSetPublishJob, AssignmentSetSortType, type AssignmentSetStandard, type AssignmentShare, type AssignmentSharingSource, type AssignmentV2, type AssignmentV2AssignedPlayersCountsArgs, type AssignmentV2PlayerAssignmentsArgs, type Audience, type Avatar, type AwakeningActivity, type AwakeningActivityBySchoolRow, type Breadcrumb, type CheckAnswerResult, type Concept, type CopyAssignmentsResult, type CountResult, type DeleteSchoolAdminResult, type DeleteSubscriptionResult, type District, type DistrictAccountConfigSummary, type DistrictPlaytimeLimit, type DistrictRegion, type DistrictRegionsList, type DistrictSetting, type DistrictsList, type DocumentType, type EndImpersonationResult, type Exact, type FeatureFlagVariant, type Filter, type FluencyDailySummaryByPlayer, type FluencyFocus, FluencyFocusType, type FluencyGrowthPeriod, type FluencyInstructor, type FluencyPlayer, type FluencyPlayerDistribution, type FluencyPlayerFluencySessionsArgs, type FluencyReportFilter, FluencyReportOrganizationType, type FluencySession, type FluencySessionFilter, type FluencySessionsCount, type FluencyStudent, type FluencyTrialsCount, type FluencyTrialsMedianStudentReport, type FragmentType, type Game, type GameAlignment, type GameConceptAlignedQuestionsArgs, type GameLearningObjectivesArgs, type GameReview, type GameReviewsList, type GameStat, type GameTeacherReviewsArgs, type GameVersion, type GamesList, GetDistrictRegionsDocument, type GetDistrictRegionsQuery, type GetDistrictRegionsQueryVariables, GetDistrictsDocument, type GetDistrictsQuery, type GetDistrictsQueryVariables, GetSchoolsDocument, type GetSchoolsQuery, type GetSchoolsQueryVariables, GetStatesDocument, type GetStatesQuery, type GetStatesQueryVariables, GetUsersDocument, type GetUsersQuery, type GetUsersQueryVariables, type Grade, type Group, type Header, type Image, type ImpersonationInfo, type ImpersonationResult, type Incremental, type InputMaybe, type Language, type LearningObjective, type LearningObjectiveGamesArgs, type LearningObjectiveQuestionsArgs, type LearningObjectiveUnit, type LearningObjectivesList, type ListingUser, type LtiOauthRegistration, type LtiOauthRegistrationsList, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type MonthlyActiveStudent, type MonthlyActiveTeacher, type MonthlyAssignment, type MonthlyMinigame, type MonthlyPlaytime, type MonthlyQuestion, type NewLtiOauthRegistration, type Parent, type ParentUser, type PerformanceReport, type PerformanceReportV2Download, type Player, type PlayerActivity, type PlayerActivityAnswer, type PlayerAssignment, type PlayerAssignmentList, type PlayerAvatar, type PlayerLearningObjectiveResult, type Playtime, type PlaytimeLimit, PlaytimeLimitScope, PlaytimeType, type Product, type Provider, type Question, type QuestionExplanation, type QuestionLearningObjectivesArgs, type RemoveSubscriptionSeatUserResult, type RemovedSubscriptionSeatUsers, type RootMutationType, type RootMutationTypeAddDistrictAdminRegionsArgs, type RootMutationTypeAddUsersToSubscriptionArgs, type RootMutationTypeAssignSchoolsToSchoolAdminArgs, type RootMutationTypeCheckAnswerArgs, type RootMutationTypeCloneAssignmentSetArgs, type RootMutationTypeCopyAssignmentsBetweenSetsArgs, type RootMutationTypeCreateAssignmentV2Args, type RootMutationTypeCreateAwakeningActivityArgs, type RootMutationTypeCreateDistrictRegionArgs, type RootMutationTypeCreateSchoolAdminArgs, type RootMutationTypeCreateSubscriptionCodeArgs, type RootMutationTypeCreateVideoArgs, type RootMutationTypeDeactivateAccountConfigArgs, type RootMutationTypeDeleteAssignmentSetArgs, type RootMutationTypeDeleteAssignmentV2Args, type RootMutationTypeDeleteDistrictRegionsArgs, type RootMutationTypeDeleteLtiOauthRegistrationArgs, type RootMutationTypeDeleteSchoolAdminArgs, type RootMutationTypeDeleteSchoolAdminSchoolArgs, type RootMutationTypeDeleteSubscriptionArgs, type RootMutationTypeDeleteSubscriptionCodeArgs, type RootMutationTypeEditAssignmentPlaylistArgs, type RootMutationTypeEditDistrictAdminRegionsArgs, type RootMutationTypeEditDistrictRegionAdminsArgs, type RootMutationTypeEditDistrictRegionSchoolsArgs, type RootMutationTypeEditSchoolDistrictRegionsArgs, type RootMutationTypeEnsureSubscriberArgs, type RootMutationTypeExpireSubscriptionCodeArgs, type RootMutationTypeGenerateLtiOauthRegistrationArgs, type RootMutationTypeImpersonateUserArgs, type RootMutationTypePerformanceReportV2DownloadArgs, type RootMutationTypePublishAssignmentSetArgs, type RootMutationTypeRecordEventArgs, type RootMutationTypeRemoveSchoolsFromSchoolAdminArgs, type RootMutationTypeRemoveUsersFromSubscriptionArgs, type RootMutationTypeSetIsDistrictAdminArgs, type RootMutationTypeSetIsSchoolAdminArgs, type RootMutationTypeSubscribeArgs, type RootMutationTypeUnsubscribeArgs, type RootMutationTypeUpdateAssignmentSetArgs, type RootMutationTypeUpdateAssignmentV2Args, type RootMutationTypeUpdateSchoolAdminSchoolArgs, type RootMutationTypeUpdateSubscriptionArgs, type RootMutationTypeUpsertDistrictPlaytimeLimitArgs, type RootMutationTypeUpsertSchoolPlaytimeLimitArgs, type RootMutationTypeUpsertTeacherPlaytimeLimitArgs, type RootQueryType, type RootQueryTypeAccountConfigs2Args, type RootQueryTypeAllowedSubscriptionsArgs, type RootQueryTypeAssignmentSetArgs, type RootQueryTypeAssignmentSetAssignmentsWithTeachersArgs, type RootQueryTypeAssignmentSetPublishJobArgs, type RootQueryTypeAssignmentSetsArgs, type RootQueryTypeAssignmentV2Args, type RootQueryTypeDistrictArgs, type RootQueryTypeDistrictRegionsArgs, type RootQueryTypeDistricts2Args, type RootQueryTypeDistrictsArgs, type RootQueryTypeFluencyActiveStudentsCountArgs, type RootQueryTypeFluencyGrowthPeriodsArgs, type RootQueryTypeFluencyPlayerDistributionArgs, type RootQueryTypeFluencySessionsCountArgs, type RootQueryTypeFluencySessionsMedianStudentCountArgs, type RootQueryTypeFluencyTotalNetGainFactsCountArgs, type RootQueryTypeFluencyTrialsCountArgs, type RootQueryTypeFluencyTrialsMedianStudentReportArgs, type RootQueryTypeGameArgs, type RootQueryTypeGamesArgs, type RootQueryTypeGetEligibleTeacherGradeCountsForAssignmentSetArgs, type RootQueryTypeLearningObjectivesArgs, type RootQueryTypeLtiOauthRegistrations2Args, type RootQueryTypeLtiOauthRegistrationsArgs, type RootQueryTypePerformanceReportArgs, type RootQueryTypeSchoolAdminsArgs, type RootQueryTypeSchoolArgs, type RootQueryTypeSchools2Args, type RootQueryTypeSchoolsAndTeachersForDistrictAssignmentsArgs, type RootQueryTypeSchoolsArgs, type RootQueryTypeStandardArgs, type RootQueryTypeStandardsArgs, type RootQueryTypeStates2Args, type RootQueryTypeStatesArgs, type RootQueryTypeSubscriberSubscriptionArgs, type RootQueryTypeSubscriptionCodesArgs, type RootQueryTypeUsageReportArgs, type RootQueryTypeUsageReportChartArgs, type RootQueryTypeUsageReportStudentActivityArgs, type RootQueryTypeUsageReportTableArgs, type RootQueryTypeUsers2Args, type RootQueryTypeUsersArgs, type RosteringSource, type Scalars, type School, type SchoolAdminSchool, type SchoolAndTeachersForDistrictAssignment, type SchoolPlaytimeLimit, type SchoolSetting, type SchoolsList, type SelectOption, SortDirectionType, type Standard, type StandardLearningObjectivesArgs, type StandardUnit, type State, type StatesList, type Student, type StudentActivityAssignmentCountArgs, type StudentActivityCountArgs, type StudentActivityDistributionRow, type StudentGroup, type StudentUser, type StudentUserAssignmentPerformanceArgs, type StudentUserFluencyDailySummariesArgs, type StudentUserFluencySessionsArgs, type StudentUserPlaytimeDailySummariesArgs, type Subject, type Subscriber, type SubscriberSubscription, type SubscriptionCode, type SubscriptionCodesList, type SubscriptionProgram, type SubscriptionProgramList, type SubscriptionSeatUser, type Teacher, type TeacherFocusArea, type TeacherForAssignmentSet, type TeacherForDistrictAssignment, type TeacherGradeCount, type TeacherPlayer, type TeacherPlaytimeLimit, type TeacherSetting, type TeacherUser, type UsageChartData, type UsageFilters, type UsageReport, type UsageReportChartResult, type UsageReportStudentActivityResult, type UsageReportTableResult, type UsageTables, type User, type UserFilter, UserFilterRole, type UserForDistrictAssignment, type UserSubjectGradeLevel, type UsersList, type Video, graphql, isFragmentReady, makeFragmentData, useFragment };
|