Skip to content
Snippets Groups Projects
Commit fd94a03a authored by Julian's avatar Julian
Browse files

Use graphene List instead of FilterOderList for non-django types

parent 255e1dfe
No related branches found
No related tags found
1 merge request!360Resolve "Add absence management to course book student dialog"
......@@ -43,7 +43,7 @@ class Query(graphene.ObjectType):
groups_by_person = FilterOrderList(GroupType, person=graphene.ID())
courses_of_person = FilterOrderList(CourseType, person=graphene.ID())
lessons_for_persons = FilterOrderList(
lessons_for_persons = graphene.List(
LessonsForPersonType,
persons=graphene.List(graphene.ID, required=True),
start=graphene.Date(required=True),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment