Merge pull request #109 from timmygee/master

Fix incorrect type in example
This commit is contained in:
Syrus Akbary 2016-02-05 09:23:26 -08:00
commit 38c01085bd

View File

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