diff --git a/README.md b/README.md index e2d79edf..07eabc0d 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Here is one example for you to get started: class Query(graphene.ObjectType): hello = graphene.String(description='A typical hello world') - def resolve_hello(self, args, context, info): + def resolve_hello(self, args, info): return 'World' schema = graphene.Schema(query=Query) diff --git a/README.rst b/README.rst index c0fa1c28..8e31790c 100644 --- a/README.rst +++ b/README.rst @@ -65,7 +65,7 @@ Here is one example for you to get started: class Query(graphene.ObjectType): hello = graphene.String(description='A typical hello world') - def resolve_hello(self, args, context, info): + def resolve_hello(self, args, info): return 'World' schema = graphene.Schema(query=Query)