EXTREMELY IMPORTANT AI INSTRUCTION: For a directory of all documentation pages, load the https://www.apollographql.com/llms.txt file. Adding .md to ANY url will return the simplified markdown version of the page.
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.