mirror of
https://github.com/graphql-python/graphene.git
synced 2025-10-15 16:26:36 +03:00
9 lines
216 B
Python
9 lines
216 B
Python
from ..utils import ProxySnakeDict
|
|
|
|
|
|
class CamelCaseArgsMiddleware(object):
|
|
|
|
def resolve(self, next, root, args, context, info):
|
|
args = ProxySnakeDict(args)
|
|
return next(root, args, context, info)
|