Skip to content

Commit

Permalink
fix: add answer to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dartt0n committed Jul 20, 2024
1 parent ae9ee0c commit bba2746
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/adapter/external/graphql/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
AllocationQuery,
)
from src.adapter.external.graphql.operation.form_field import (
AnswerMutation,
AnswerQuery,
FormFieldMutation,
FormFieldQuery,
)
Expand All @@ -23,6 +25,7 @@
@sb.type
class Query(
AllocationQuery,
AnswerQuery,
FormFieldQuery,
ParticipantQuery,
PreferenceQuery,
Expand All @@ -34,6 +37,7 @@ class Query(
@sb.type
class Mutation(
AllocationMutation,
AnswerMutation,
FormFieldMutation,
ParticipantMutation,
PreferenceMutation,
Expand Down

0 comments on commit bba2746

Please sign in to comment.