Fix incorrect type in example

This commit is contained in:
timmygee 2016-02-05 16:16:08 +11:00
parent c5b15cec2f
commit cac510e7f4

View File

@ -18,7 +18,7 @@ class CreatePerson(graphene.Mutation):
class Input:
name = graphene.String()
ok = graphene.String()
ok = graphene.Boolean()
person = graphene.Field('Person')
@classmethod