graphene/graphene/decorators.py
2015-09-24 02:11:50 -07:00

8 lines
156 B
Python

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