HotChocolate serializes enum values in all upper snail case, which leads to
being the enum value FooBar being inferred as FOO_BAR by Hot Chocolate, but value.ToString() and Enum.GetName(value) gives FooBar, and Hot Chocolate seems to ignore [EnumMember(Value = "FooBar")].
How can I change the serialization to any way I'd like?