Merge pull request #316 from mekhami/patch-1

Update README to reflect that resolve_only_args is deprecated
This commit is contained in:
Syrus Akbary 2017-11-12 10:25:42 -08:00 committed by GitHub
commit bc15439e3d
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()