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.
ApolloSchemaDownloader.SchemaDownloadError
ENUM
ApolloSchemaDownloader.SchemaDownloadError
Swift
1public enum SchemaDownloadError: Error, LocalizedErrorCases
downloadedRegistryJSONFileNotFound(underlying:)
Swift
1case downloadedRegistryJSONFileNotFound(underlying: Error)downloadedIntrospectionJSONFileNotFound(underlying:)
Swift
1case downloadedIntrospectionJSONFileNotFound(underlying: Error)couldNotParseRegistryJSON(underlying:)
Swift
1case couldNotParseRegistryJSON(underlying: Error)unexpectedRegistryJSONType
Swift
1case unexpectedRegistryJSONTypecouldNotExtractSDLFromRegistryJSON
Swift
1case couldNotExtractSDLFromRegistryJSONcouldNotCreateSDLDataToWrite(schema:)
Swift
1case couldNotCreateSDLDataToWrite(schema: String)couldNotConvertIntrospectionJSONToSDL(underlying:)
Swift
1case couldNotConvertIntrospectionJSONToSDL(underlying: Error)couldNotCreateURLComponentsFromEndpointURL(url:)
Swift
1case couldNotCreateURLComponentsFromEndpointURL(url: URL)couldNotGetURLFromURLComponents(components:)
Swift
1case couldNotGetURLFromURLComponents(components: URLComponents)Properties
errorDescription
Swift
1public var errorDescription: String?