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.
1 parent 801b42d commit 07a9bc5Copy full SHA for 07a9bc5
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