graphql-client
graphql-client copied to clipboard
Add custom name for `Other` variant
Addresses #446 and provides a way to specify the name of the fallback variant of the Query enum.
With serde_enum_fallback_variant_name=Some("Autre") you now get an enum like so:
pub enum AnEnum {
where_ ,
self_ ,
Autre (String)
}