You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The directive definition and fields using the directive would both be camel cased
Actual behavior
When generating the SDL, the directive definition is snake cased directive @one_of on INPUT_OBJECT while the fields implementing the directive are properly camel cased input ValueInput @oneOf {
Relevant Schema/Middleware Code
There shouldn't be any middleware involved.
The text was updated successfully, but these errors were encountered:
This all looks to be related to #1303. If I add the |> Absinthe.Utils.camelize(lower: true) line back I get the desired results. I don't know enough about why that was done though.
Environment
Elixir 1.1.7.3
Absinthe 1.7.8
Apollo 3.9.11
Expected behavior
The directive definition and fields using the directive would both be camel cased
Actual behavior
When generating the SDL, the directive definition is snake cased
directive @one_of on INPUT_OBJECT
while the fields implementing the directive are properly camel casedinput ValueInput @oneOf {
Relevant Schema/Middleware Code
There shouldn't be any middleware involved.
The text was updated successfully, but these errors were encountered: