View Source Absinthe.Adapter.StrictLanguageConventions (absinthe v1.7.6)
Strict version of Absinthe.Adapter.LanguageConventions
that will reject
improperly formatted external names.
For example, this document:
{
create_user(user_id: 2) {
first_name
last_name
}
}
Would result in name-mismatch errors returned to the client.
The client should instead send the camelcase variant of the names:
{
createUser(userId: 2) {
firstName
lastName
}
}
See Absinthe.Adapter.LanguageConventions
for more information.
Summary
Functions
Converts a snake_case to camelCase
Converts a camelCase to snake_case
Returns nil
if the converted internal name does not match the converted external name.