Update README to reflect that resolve_only_args is deprecated

As resolve_only_args is deprecated, let's remove it from the README.
This commit is contained in:
mekhami 2017-11-04 12:29:58 -05:00 committed by GitHub
parent 2600f0f041
commit a3f3d90ab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,6 @@ class User(DjangoObjectType):
class Query(graphene.ObjectType):
users = graphene.List(User)
@graphene.resolve_only_args
def resolve_users(self):
return UserModel.objects.all()