graphene/graphene/decorators.py

8 lines
156 B
Python
Raw Normal View History

2015-09-24 12:11:50 +03:00
from functools import wraps
def resolve_only_args(func):
@wraps(func)
def inner(self, args, info):
return func(self, **args)
return inner