diff --git a/apps/tool_picker/graphql/types.py b/apps/tool_picker/graphql/types.py index bdc306d..a3739ae 100644 --- a/apps/tool_picker/graphql/types.py +++ b/apps/tool_picker/graphql/types.py @@ -19,6 +19,7 @@ class QuestionTitleType: title: strawberry.auto question_type: strawberry.auto description: strawberry.auto + order: strawberry.auto @strawberry_django.type(CheckboxOption) diff --git a/schema.graphql b/schema.graphql index 1768129..e732ae0 100644 --- a/schema.graphql +++ b/schema.graphql @@ -213,6 +213,7 @@ type QuestionTitleType { title: String! questionType: QuestionTypeEnum! description: String! + order: Int! } """Model representing question within a catalog."""