We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 801b42d + 07a9bc5 commit 48865f1Copy full SHA for 48865f1
README.md
@@ -39,7 +39,7 @@ class Person(PydanticObjectType):
39
exclude_fields = ("id",)
40
41
class Query(graphene.ObjectType):
42
- people = graphene.List(User)
+ people = graphene.List(Person)
43
44
def resolve_people(self, info):
45
return get_people() # function returning `PersonModel`s
0 commit comments