namingScheme property
The naming scheme to be used.
- NamingScheme.pathedWithTypes: default, where the names of previous classes are used to generate the prefix.
- NamingScheme.pathedWithFields: the field names are joined together to generate the path.
- NamingScheme.simple: considers only the actual GraphQL class name. This will probably lead to duplication and an Artemis error unless you use aliases.
Implementation
@JsonKey(unknownEnumValue: NamingScheme.pathedWithTypes)
final NamingScheme? namingScheme;