Skip to content

Commit 61e4b84

Browse files
committed
question cubmission renders and overall grading is functional
1 parent 15b93b3 commit 61e4b84

File tree

14 files changed

+531
-98
lines changed

14 files changed

+531
-98
lines changed

graphql.schema.json

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3145,6 +3145,39 @@
31453145
"isDeprecated": false,
31463146
"deprecationReason": null
31473147
},
3148+
{
3149+
"name": "wipeAllProgress",
3150+
"description": null,
3151+
"args": [
3152+
{
3153+
"name": "username",
3154+
"description": null,
3155+
"type": {
3156+
"kind": "NON_NULL",
3157+
"name": null,
3158+
"ofType": {
3159+
"kind": "SCALAR",
3160+
"name": "String",
3161+
"ofType": null
3162+
}
3163+
},
3164+
"defaultValue": null,
3165+
"isDeprecated": false,
3166+
"deprecationReason": null
3167+
}
3168+
],
3169+
"type": {
3170+
"kind": "NON_NULL",
3171+
"name": null,
3172+
"ofType": {
3173+
"kind": "SCALAR",
3174+
"name": "String",
3175+
"ofType": null
3176+
}
3177+
},
3178+
"isDeprecated": false,
3179+
"deprecationReason": null
3180+
},
31483181
{
31493182
"name": "editOrCreateGoal",
31503183
"description": null,
@@ -3309,6 +3342,39 @@
33093342
},
33103343
"isDeprecated": false,
33113344
"deprecationReason": null
3345+
},
3346+
{
3347+
"name": "gradeObjectiveTaskMastery",
3348+
"description": null,
3349+
"args": [
3350+
{
3351+
"name": "grade",
3352+
"description": null,
3353+
"type": {
3354+
"kind": "NON_NULL",
3355+
"name": null,
3356+
"ofType": {
3357+
"kind": "INPUT_OBJECT",
3358+
"name": "ObjectiveTaskMasteryInput",
3359+
"ofType": null
3360+
}
3361+
},
3362+
"defaultValue": null,
3363+
"isDeprecated": false,
3364+
"deprecationReason": null
3365+
}
3366+
],
3367+
"type": {
3368+
"kind": "NON_NULL",
3369+
"name": null,
3370+
"ofType": {
3371+
"kind": "OBJECT",
3372+
"name": "ObjectiveTaskMastery",
3373+
"ofType": null
3374+
}
3375+
},
3376+
"isDeprecated": false,
3377+
"deprecationReason": null
33123378
}
33133379
],
33143380
"inputFields": null,
@@ -3688,6 +3754,156 @@
36883754
"enumValues": null,
36893755
"possibleTypes": null
36903756
},
3757+
{
3758+
"kind": "OBJECT",
3759+
"name": "ObjectiveTaskMastery",
3760+
"description": null,
3761+
"fields": [
3762+
{
3763+
"name": "student",
3764+
"description": null,
3765+
"args": [],
3766+
"type": {
3767+
"kind": "NON_NULL",
3768+
"name": null,
3769+
"ofType": {
3770+
"kind": "SCALAR",
3771+
"name": "String",
3772+
"ofType": null
3773+
}
3774+
},
3775+
"isDeprecated": false,
3776+
"deprecationReason": null
3777+
},
3778+
{
3779+
"name": "taskId",
3780+
"description": null,
3781+
"args": [],
3782+
"type": {
3783+
"kind": "NON_NULL",
3784+
"name": null,
3785+
"ofType": {
3786+
"kind": "SCALAR",
3787+
"name": "String",
3788+
"ofType": null
3789+
}
3790+
},
3791+
"isDeprecated": false,
3792+
"deprecationReason": null
3793+
},
3794+
{
3795+
"name": "objectiveId",
3796+
"description": null,
3797+
"args": [],
3798+
"type": {
3799+
"kind": "NON_NULL",
3800+
"name": null,
3801+
"ofType": {
3802+
"kind": "SCALAR",
3803+
"name": "String",
3804+
"ofType": null
3805+
}
3806+
},
3807+
"isDeprecated": false,
3808+
"deprecationReason": null
3809+
},
3810+
{
3811+
"name": "mastery",
3812+
"description": null,
3813+
"args": [],
3814+
"type": {
3815+
"kind": "NON_NULL",
3816+
"name": null,
3817+
"ofType": {
3818+
"kind": "ENUM",
3819+
"name": "Mastery",
3820+
"ofType": null
3821+
}
3822+
},
3823+
"isDeprecated": false,
3824+
"deprecationReason": null
3825+
}
3826+
],
3827+
"inputFields": null,
3828+
"interfaces": [],
3829+
"enumValues": null,
3830+
"possibleTypes": null
3831+
},
3832+
{
3833+
"kind": "INPUT_OBJECT",
3834+
"name": "ObjectiveTaskMasteryInput",
3835+
"description": null,
3836+
"fields": null,
3837+
"inputFields": [
3838+
{
3839+
"name": "student",
3840+
"description": null,
3841+
"type": {
3842+
"kind": "NON_NULL",
3843+
"name": null,
3844+
"ofType": {
3845+
"kind": "SCALAR",
3846+
"name": "String",
3847+
"ofType": null
3848+
}
3849+
},
3850+
"defaultValue": null,
3851+
"isDeprecated": false,
3852+
"deprecationReason": null
3853+
},
3854+
{
3855+
"name": "taskId",
3856+
"description": null,
3857+
"type": {
3858+
"kind": "NON_NULL",
3859+
"name": null,
3860+
"ofType": {
3861+
"kind": "SCALAR",
3862+
"name": "String",
3863+
"ofType": null
3864+
}
3865+
},
3866+
"defaultValue": null,
3867+
"isDeprecated": false,
3868+
"deprecationReason": null
3869+
},
3870+
{
3871+
"name": "objectiveId",
3872+
"description": null,
3873+
"type": {
3874+
"kind": "NON_NULL",
3875+
"name": null,
3876+
"ofType": {
3877+
"kind": "SCALAR",
3878+
"name": "String",
3879+
"ofType": null
3880+
}
3881+
},
3882+
"defaultValue": null,
3883+
"isDeprecated": false,
3884+
"deprecationReason": null
3885+
},
3886+
{
3887+
"name": "mastery",
3888+
"description": null,
3889+
"type": {
3890+
"kind": "NON_NULL",
3891+
"name": null,
3892+
"ofType": {
3893+
"kind": "ENUM",
3894+
"name": "Mastery",
3895+
"ofType": null
3896+
}
3897+
},
3898+
"defaultValue": null,
3899+
"isDeprecated": false,
3900+
"deprecationReason": null
3901+
}
3902+
],
3903+
"interfaces": null,
3904+
"enumValues": null,
3905+
"possibleTypes": null
3906+
},
36913907
{
36923908
"kind": "OBJECT",
36933909
"name": "Page",

0 commit comments

Comments
 (0)