Apollo 0.x generated an API that used camel case for field names (firstName), but 1.x generates field names as-is in snake case (first_name). Is there a way to configure this?
query GetMe {
getMe {
first_name
last_name
}
}
In Code Generation > Configuration > Output options there’s a conversionStrategies
property but it seems the only possible value is "enumCases": "camelCase"
. How do I specify field names shall be converted into camel case in the generated API? Thanks!