Skip to content

Commit a7c28f2

Browse files
committed
Merge pull request #77 from BillyBarbaro/master
Changed mutation documentation in reference to Issue #76
2 parents 9308e6d + 14b9257 commit a7c28f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/docs/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CreatePerson(graphene.Mutation):
2222
person = graphene.Field('Person')
2323

2424
@classmethod
25-
def mutate(cls, args, info):
25+
def mutate(cls, instance, args, info):
2626
person = Person(name=args.get('name'))
2727
ok = True
2828
return CreatePerson(person=person, ok=ok)

0 commit comments

Comments
 (0)