graphene/graphene/plugins/camel_case.py
2015-12-09 19:26:46 -08:00

8 lines
147 B
Python

from ..utils import to_camel_case
class CamelCase(object):
def get_default_namedtype_name(self, value):
return to_camel_case(value)