ApolloSchemaDownloadConfiguration.DownloadMethod


ENUM

ApolloSchemaDownloadConfiguration.DownloadMethod

Swift
1public enum DownloadMethod: Equatable, Codable

How to attempt to download your schema

Cases

apolloRegistry(_:)

Swift
1case apolloRegistry(_ settings: ApolloRegistrySettings)

The Apollo Schema Registry, which serves as a central hub for managing your graph.

introspection(endpointURL:httpMethod:outputFormat:)

Swift
1case introspection(
2  endpointURL: URL,
3  httpMethod: HTTPMethod = .POST,
4  outputFormat: OutputFormat = .SDL
5)

GraphQL Introspection connecting to the specified URL.

Methods

==(_:_:)

Swift
1public static func == (lhs: DownloadMethod, rhs: DownloadMethod) -> Bool

Parameters

NameDescription
lhsA value to compare.
rhsAnother value to compare.
Feedback

Edit on GitHub

Forums