graphene/graphene/decorators.py
2015-10-02 22:17:51 -07:00

9 lines
160 B
Python

from functools import wraps
def resolve_only_args(func):
@wraps(func)
def inner(self, args, info):
return func(self, **args)
return inner