Fix type references

This commit is contained in:
Ramon Wenger 2024-07-11 09:26:30 +02:00 committed by Christian Cueni
parent 6a827ae0ae
commit a43d2df082
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ class CourseObjectType(DjangoObjectType):
configuration = graphene.Field(CourseConfigurationObjectType, required=True)
profiles = graphene.List(graphene.String)
course_session_users = graphene.List(
"course.graphql.types.CourseSessionUserType", required=True
"vbv_lernwelt.course.graphql.types.CourseSessionUserType", required=True
)
class Meta:
@ -149,7 +149,7 @@ class CourseSessionUserExpertCircleType(ObjectType):
class CourseSessionUserType(DjangoObjectType):
chosen_profile = graphene.String()
course_session = graphene.Field(
"course.graphql.types.CourseSessionObjectType", required=True
"vbv_lernwelt.course.graphql.types.CourseSessionObjectType", required=True
)
class Meta: