ApolloCodegenOptions.CustomScalarFormat
ENUM
ApolloCodegenOptions.CustomScalarFormat
Swift
1public enum CustomScalarFormat: EquatableEnum to select how to handle properties using a custom scalar from the schema.
Cases
none
Swift
1case noneUses a default type instead of a custom scalar.
passthrough
Swift
1case passthroughUse your own types for custom scalars.
passthroughWithPrefix(_:)
Swift
1case passthroughWithPrefix(String)Use your own types for custom scalars with a prefix.