Skip to content

Commit

Permalink
Merge 68d5c5e into 9a54f78
Browse files Browse the repository at this point in the history
  • Loading branch information
sjschlapbach authored Oct 29, 2024
2 parents 9a54f78 + 68d5c5e commit 0ec60f5
Show file tree
Hide file tree
Showing 15 changed files with 545 additions and 285 deletions.
15 changes: 12 additions & 3 deletions packages/graphql/src/graphql/ops/FStackFeedbackEvaluations.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ fragment StackFeedbackEvaluations on StackFeedback {
correct
value
}
choices
choices {
ix
count
}
numAnswers
score
xp
Expand Down Expand Up @@ -43,7 +46,10 @@ fragment StackFeedbackEvaluations on StackFeedback {
value
}
numAnswers
answers
responses {
value
count
}
score
xp
pointsAwarded
Expand Down Expand Up @@ -75,7 +81,10 @@ fragment StackFeedbackEvaluations on StackFeedback {
value
}
numAnswers
answers
answers {
value
count
}
score
xp
pointsAwarded
Expand Down
192 changes: 174 additions & 18 deletions packages/graphql/src/ops.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1660,9 +1660,17 @@
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
"name": "Json",
"ofType": null
"kind": "LIST",
"name": null,
"ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "OBJECT",
"name": "SingleChoiceResponse",
"ofType": null
}
}
},
"isDeprecated": false,
"deprecationReason": null
Expand Down Expand Up @@ -7485,9 +7493,17 @@
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
"name": "Json",
"ofType": null
"kind": "LIST",
"name": null,
"ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "OBJECT",
"name": "SingleFreeTextResponse",
"ofType": null
}
}
},
"isDeprecated": false,
"deprecationReason": null
Expand Down Expand Up @@ -17129,18 +17145,6 @@
"description": null,
"isOneOf": null,
"fields": [
{
"name": "answers",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
"name": "Json",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "correctness",
"description": null,
Expand Down Expand Up @@ -17305,6 +17309,26 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "responses",
"description": null,
"args": [],
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "OBJECT",
"name": "SingleNumericalResponse",
"ofType": null
}
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "score",
"description": null,
Expand Down Expand Up @@ -22497,6 +22521,138 @@
],
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "SingleChoiceResponse",
"description": null,
"isOneOf": null,
"fields": [
{
"name": "count",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "ix",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
"interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "SingleFreeTextResponse",
"description": null,
"isOneOf": null,
"fields": [
{
"name": "count",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "value",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
"interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "SingleNumericalResponse",
"description": null,
"isOneOf": null,
"fields": [
{
"name": "count",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "value",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "Float",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
"interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "SingleQuestionResponseChoices",
Expand Down
Loading

0 comments on commit 0ec60f5

Please sign in to comment.