graphene/graphene/utils/resolve_only_args.py

13 lines
256 B
Python
Raw Normal View History

2017-07-27 12:51:25 +03:00
from functools import wraps
from .deprecated import deprecated
2016-06-04 13:12:09 +03:00
2017-07-27 12:51:25 +03:00
@deprecated('This function is deprecated')
2016-06-04 13:12:09 +03:00
def resolve_only_args(func):
2017-07-27 12:51:25 +03:00
@wraps(func)
def wrapped_func(root, info, **args):
return func(root, **args)
return wrapped_func