fix example middleware class in docs (#1134)

This commit is contained in:
David Sanders 2020-02-10 14:17:16 -08:00 committed by GitHub
parent 23bb52a770
commit 03bd6984dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ This middleware only continues evaluation if the ``field_name`` is not ``'user'`
.. code:: python
class AuthorizationMiddleware(object):
def resolve(next, root, info, **args):
def resolve(self, next, root, info, **args):
if info.field_name == 'user':
return None
return next(root, info, **args)