GraphQL Schema
Query
Field | Argument | Type | Description |
---|---|---|---|
Questions | [Question!]! | ||
Statistics | Response! |
Mutation
Field | Argument | Type | Description |
---|---|---|---|
ScaffoldingsSequences | [[Int!]!]! | ||
data | ScaffoldingsSequencesInput! | ||
NewTest | NewTestResponse! | ||
data | TestDataInput! | ||
NewQuestion | Response! | ||
data | QuestionInput! |
Objects
ErrorMetrics
Field | Argument | Type | Description |
---|---|---|---|
SyntaxChecker | MetricDescription! | ||
JupyterOutput | MetricDescription! |
Metric
Field | Argument | Type | Description |
---|---|---|---|
ID | ID! | ||
error | ErrorMetrics! | ||
stuck | StuckMetrics! | ||
responsiveness | ResponsivenessMetrics! |
MetricDescription
Field | Argument | Type | Description |
---|---|---|---|
Average | Int! | ||
Count | Int! |
NewTestResponse
Field | Argument | Type | Description |
---|---|---|---|
Response | Response! | ||
Credentials | String! |
Question
Field | Argument | Type | Description |
---|---|---|---|
id | ID! | ||
title | String! |
Response
Field | Argument | Type | Description |
---|---|---|---|
message | String! | ||
ok | Boolean! |
ResponsivenessMetrics
Field | Argument | Type | Description |
---|---|---|---|
NoCellExecution | MetricDescription! | ||
NoKeyboardActivity | MetricDescription! | ||
NoMouseMovement | MetricDescription! |
StuckMetrics
Field | Argument | Type | Description |
---|---|---|---|
ErrorsOccured | MetricDescription! | ||
NoCellExecution | MetricDescription! |
Subscription
Field | Argument | Type | Description |
---|---|---|---|
Metrics | [Metric!] | ||
TestID | String! |
Inputs
ActionsInput
Field | Type | Description | |
---|---|---|---|
Responsiveness | Upload! | ||
Stuck | Upload! | ||
Error | Upload! | ||
ModuleUsage | Upload! | ||
FunctionUsage | Upload! | ||
Passive | Upload! |
Error
Field | Type | Description | |
---|---|---|---|
expr | String! | ||
indicators | ErrorIndicators! |
ErrorIndicator
Field | Type | Description | |
---|---|---|---|
threshold | Int! | ||
enabled | Boolean! |
ErrorIndicators
Field | Type | Description | |
---|---|---|---|
syntax_checker | ErrorIndicator! | ||
jupyter_output | ErrorIndicator! |
ExtraConfig
Field | Type | Description | |
---|---|---|---|
scaffolding | String! | ||
count | Int! |
HighErrorFrequency
Field | Type | Description | |
---|---|---|---|
enabled | Boolean! | ||
min_normalized_frequency | Int! | ||
time | Int! | ||
early_trigger | Int! |
LastExecutionIsAnError
Field | Type | Description | |
---|---|---|---|
enabled | Boolean! | ||
threshold | Int! | ||
reset_threshold | String! |
Module
Field | Type | Description | |
---|---|---|---|
name | String! | ||
threshold | Int! |
Modules
Field | Type | Description | |
---|---|---|---|
modules | [Module!]! | ||
expr | String! |
QuestionInput
Field | Type | Description | |
---|---|---|---|
NotebookURLS | [String]! | ||
Title | String! | ||
Actions | ActionsInput! |
ResponsiveIndicators
Field | Type | Description | |
---|---|---|---|
no_cell_execution | ResponsivenessIndicator! | ||
no_keyboard_activity | ResponsivenessIndicator! | ||
no_mouse_movement | ResponsivenessIndicator! |
Responsiveness
Field | Type | Description | |
---|---|---|---|
frequency | Int! | ||
expr | String! | ||
indicators | ResponsiveIndicators! |
ResponsivenessIndicator
Field | Type | Description | |
---|---|---|---|
enabled | Boolean! | ||
threshold | Int! |
Rules
Field | Type | Description | |
---|---|---|---|
stuck | Stuck! | ||
error | Error! | ||
modules_usage | Modules! | ||
responsiveness | Responsiveness! |
ScaffoldingConfig
Field | Type | Description | |
---|---|---|---|
scaffolding | String! | ||
timestamp | Int! | ||
priority | Int! |
ScaffoldingsSequencesInput
Field | Type | Description | |
---|---|---|---|
scaffolding_config | [ScaffoldingConfig!]! | ||
extra_config | [ExtraConfig!]! |
Stuck
Field | Type | Description | |
---|---|---|---|
frequency | Int! | ||
expr | String! | ||
indicators | StuckIndicators! |
StuckIndicators
Field | Type | Description | |
---|---|---|---|
high_error_frequency | HighErrorFrequency! | ||
last_execution_is_an_error | LastExecutionIsAnError! |
TestDataInput
Field | Type | Description | |
---|---|---|---|
title | String! | ||
question_id | String! | ||
time_duration | Int! | ||
error_policy | Int! | ||
rules | Rules! | ||
sequences | [[Int]]! | ||
end_time | Int! | ||
start_time | Int! | ||
students | Upload! |
Scalars
Boolean
The Boolean
scalar type represents true
or false
.
Float
The Float
scalar type represents signed double-precision fractional values as specified by IEEE 754.
ID
The ID
scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.
Int
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.