Skip to content
Snippets Groups Projects
Commit 1aa87b43 authored by Julian's avatar Julian Committed by permcu
Browse files

Use graphene List instead of FilterOderList for non-django types

parent 31bcddb3
No related branches found
No related tags found
1 merge request!356Add dialog for creation of long-term absences
......@@ -41,7 +41,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