forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
551 lines (448 loc) · 11.5 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
type Assignment implements Node, Timestamped {
# legacy canvas id
_id: ID!
course: Course
createdAt: Time
description: String
discussion: Discussion
# when this assignment is due
dueAt: String
htmlUrl: URL
id: ID!
name: String
needsGradingCount: Int
# the assignment is out of this many points
pointsPossible: Float
# determines the order this assignment is displayed in in its assignment group
position: Int
quiz: Quiz
state: AssignmentState!
# submissions for this assignment
submissionsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): SubmissionConnection
updatedAt: Time
}
# The connection type for Assignment.
type AssignmentConnection {
# A list of edges.
edges: [AssignmentEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type AssignmentEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: Assignment
}
type AssignmentGroup implements Node, Timestamped {
# legacy canvas id
_id: ID!
assignmentsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): AssignmentConnection
createdAt: Time
groupWeight: Float
id: ID!
name: String
position: Int
rules: AssignmentGroupRules
state: AssignmentGroupState!
updatedAt: Time
}
# The connection type for AssignmentGroup.
type AssignmentGroupConnection {
# A list of edges.
edges: [AssignmentGroupEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type AssignmentGroupEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: AssignmentGroup
}
type AssignmentGroupRules {
# The highest N assignments are not included in grade calculations
dropHighest: Int
# The lowest N assignments are not included in grade calculations
dropLowest: Int
neverDrop: [Assignment]
}
# States that Assignment Group can be in
enum AssignmentGroupState {
available
deleted
}
input AssignmentInput {
courseId: ID!
name: String!
}
# States that an Assignment can be in
enum AssignmentState {
deleted
published
unpublished
}
type Course implements Node, Timestamped {
# legacy canvas id
_id: ID!
assignmentGroupsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): AssignmentGroupConnection
assignmentsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): AssignmentConnection
# course short name
courseCode: String
createdAt: Time
gradingPeriodsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): GradingPeriodConnection
id: ID!
name: String!
# returns permission information for the current user in this course
permissions: CoursePermissions
sectionsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): SectionConnection
state: CourseWorkflowState!
# all the submissions for assignments in this course
submissionsConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
orderBy: [SubmissionOrderCriteria]
# Only return submissions for the given students.
studentIds: [ID!]!
): SubmissionConnection
updatedAt: Time
usersConnection(
# Returns the elements in the list that come after the specified global ID.
after: String
# Returns the elements in the list that come before the specified global ID.
before: String
# Returns the first _n_ elements from the list.
first: Int
# Returns the last _n_ elements from the list.
last: Int
): UserConnection
}
type CoursePermissions {
becomeUser: Boolean
manageGrades: Boolean
sendMessages: Boolean
viewAllGrades: Boolean
viewAnalytics: Boolean
}
# States that Courses can be in
enum CourseWorkflowState {
available
claimed
completed
created
deleted
}
type Discussion implements Node, Timestamped {
# legacy canvas id
_id: ID!
createdAt: Time
id: ID!
updatedAt: Time
}
type Enrollment implements Node, Timestamped {
# legacy canvas id
_id: ID!
course: Course
createdAt: Time
grades(
# The grading period to return grades for. If not specified, will use the
# current grading period (or the course grade for courses that don't use
# grading periods)
gradingPeriodId: ID
): Grades
id: ID!
lastActivityAt: Time
section: Section
state: EnrollmentWorkflowState!
type: EnrollmentType!
updatedAt: Time
user: User
}
enum EnrollmentType {
DesignerEnrollment
ObserverEnrollment
StudentEnrollment
StudentViewEnrollment
TaEnrollment
TeacherEnrollment
}
enum EnrollmentWorkflowState {
active
completed
creation_pending
deleted
invited
rejected
}
# Contains grade information for a course or grading period
type Grades {
currentGrade: String
# The current score includes all graded assignments
currentScore: Float
finalGrade: String
# The final score includes all assignments (ungraded assignments are counted as 0 points)
finalScore: Float
}
type GradingPeriod implements Node, Timestamped {
# legacy canvas id
_id: ID!
# assignments can only be graded before the grading period closes
closeDate: Time
createdAt: Time
endDate: Time
id: ID!
startDate: Time
title: String
updatedAt: Time
# used to calculate how much the assignments in this grading period
# contribute to the overall grade
weight: Float
}
# The connection type for GradingPeriod.
type GradingPeriodConnection {
# A list of edges.
edges: [GradingPeriodEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type GradingPeriodEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: GradingPeriod
}
type Mutation {
createAssignment(assignment: AssignmentInput!): Assignment
}
# An object with an ID.
interface Node {
# ID of the object.
id: ID!
}
enum NodeType {
Assignment
Course
Enrollment
GradingPeriod
Section
User
}
enum OrderDirection {
ascending
descending
}
# Information about pagination in a connection.
type PageInfo {
# When paginating forwards, the cursor to continue.
endCursor: String
# When paginating forwards, are there more items?
hasNextPage: Boolean!
# When paginating backwards, are there more items?
hasPreviousPage: Boolean!
# When paginating backwards, the cursor to continue.
startCursor: String
}
type PageViewAnalysis {
# This number (0-3) is intended to give an idea of how the student is doing relative to others in the course
level: Int
# The maximum number of views/participations in this course
max: Int
# The number of views/participations this student has
total: Int
}
type Query {
# All courses viewable by the current user
allCourses: [Course]
# Fetches an object given its type and legacy ID
legacyNode(_id: ID!, type: NodeType!): Node
# Fetches an object given its ID.
node(
# ID of the object.
id: ID!
): Node
}
type Quiz implements Node, Timestamped {
# legacy canvas id
_id: ID!
createdAt: Time
id: ID!
updatedAt: Time
}
type Section implements Node, Timestamped {
# legacy canvas id
_id: ID!
createdAt: Time
id: ID!
name: String!
updatedAt: Time
}
# The connection type for Section.
type SectionConnection {
# A list of edges.
edges: [SectionEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type SectionEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: Section
}
# basic information about a students activity in a course
type StudentSummaryAnalytics {
pageViews: PageViewAnalysis
participations: PageViewAnalysis
tardinessBreakdown: TardinessBreakdown
}
type Submission implements Node, Timestamped {
assignment: Assignment
createdAt: Time
# excused assignments are ignored when calculating grades
excused: Boolean
grade: String
gradedAt: Time
gradingStatus: String
id: ID!
score: Float
submissionStatus: String
submittedAt: Time
updatedAt: Time
user: User
}
# The connection type for Submission.
type SubmissionConnection {
# A list of edges.
edges: [SubmissionEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type SubmissionEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: Submission
}
input SubmissionOrderCriteria {
direction: OrderDirection
field: SubmissionOrderField!
}
enum SubmissionOrderField {
_id
gradedAt
}
# statistics based on timeliness of student submissions
type TardinessBreakdown {
late: Float
missing: Float
onTime: Float
total: Int
}
# an ISO8601 formatted time string
scalar Time
# Contains timestamp metadata
interface Timestamped {
createdAt: Time
updatedAt: Time
}
scalar URL
type User implements Node, Timestamped {
# legacy canvas id
_id: ID!
avatarUrl: URL
createdAt: Time
enrollments(
# only return enrollments for this course
courseId: ID!
): [Enrollment]
id: ID!
name: String
# A short name the user has selected, for use in conversations or other less formal places through the site.
shortName: String
# The name of the user that is should be used for sorting groups of users, such as in the gradebook.
sortableName: String
summaryAnalytics(
# returns summary analytics for this course
courseId: ID!
): StudentSummaryAnalytics
updatedAt: Time
}
# The connection type for User.
type UserConnection {
# A list of edges.
edges: [UserEdge]
# Information to aid in pagination.
pageInfo: PageInfo!
}
# An edge in a connection.
type UserEdge {
# A cursor for use in pagination.
cursor: String!
# The item at the end of the edge.
node: User
}