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 9308e6d + 14b9257 commit a7c28f2Copy full SHA for a7c28f2
docs/pages/docs/mutations.md
@@ -22,7 +22,7 @@ class CreatePerson(graphene.Mutation):
22
person = graphene.Field('Person')
23
24
@classmethod
25
- def mutate(cls, args, info):
+ def mutate(cls, instance, args, info):
26
person = Person(name=args.get('name'))
27
ok = True
28
return CreatePerson(person=person, ok=ok)
0 commit comments