forked from apollographql/apollo-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectionSet.swift
135 lines (113 loc) · 5.91 KB
/
SelectionSet.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/// A selection set that represents the root selections on its `__parentType`. Nested selection
/// sets for type cases are not `RootSelectionSet`s.
///
/// While a `TypeCase` only provides the additional selections that should be selected for its
/// specific type, a `RootSelectionSet` guarantees that all fields for itself and its nested type
/// cases are selected.
///
/// When considering a specific `TypeCase`, all fields will be selected either by the root selection
/// set, a fragment spread, the type case itself, or another compatible `TypeCase` on the root
/// selection set.
///
/// This is why only a `RootSelectionSet` can be executed by a `GraphQLExecutor`. Executing a
/// non-root selection set would result in fields from the root selection set not being collected
/// into the `ResponseDict` for the `SelectionSet`'s data.
public protocol RootSelectionSet: SelectionSet, SelectionSetEntityValue, OutputTypeConvertible { }
/// A selection set that represents an inline fragment nested inside a `RootSelectionSet`.
///
/// An `InlineFragment` can only ever exist as a nested selection set within a `RootSelectionSet`.
/// Each `InlineFragment` represents additional fields to be selected if the underlying
/// type.inclusion condition of the object data returned for the selection set is met.
///
/// An `InlineFragment` will only include the specific `selections` that should be selected for that
/// `InlineFragment`. But the code generation engine will create accessor fields for any fields
/// from the fragment's parent `RootSelectionSet` that will be selected. This includes fields from
/// the parent selection set, as well as any other child selections sets that are compatible with
/// the `InlineFragment`'s `__parentType` and the operation's inclusion condition.
public protocol InlineFragment: SelectionSet, Deferrable {
associatedtype RootEntityType: RootSelectionSet
}
/// A selection set that is comprised of only fields merged from other selection sets.
///
/// A `CompositeSelectionSet` has no direct selections of its own, rather it is composed of
/// selections merged from multiple other selection sets. A `CompositeSelectionSet` is generated
/// when an entity in a given scope would include distinct selections from multiple other scopes
/// but is not defined in the operation/fragment definition itself.
public protocol CompositeSelectionSet: SelectionSet {}
/// An `InlineFragment` that is also a `CompositeSelectionSet`.
public protocol CompositeInlineFragment: CompositeSelectionSet, InlineFragment {
/// A list of the selection sets that the selection set is composed of.
static var __mergedSources: [any SelectionSet.Type] { get }
}
// MARK: - SelectionSet
public protocol SelectionSet: Hashable, CustomDebugStringConvertible {
associatedtype Schema: SchemaMetadata
/// A type representing all of the fragments the `SelectionSet` can be converted to.
/// Defaults to a stub type with no fragments.
/// A `SelectionSet` with fragments should provide a type that conforms to `FragmentContainer`
associatedtype Fragments = NoFragments
static var __selections: [Selection] { get }
/// The GraphQL type for the `SelectionSet`.
///
/// This may be a concrete type (`Object`) or an abstract type (`Interface`, or `Union`).
static var __parentType: any ParentType { get }
/// The data of the underlying GraphQL object represented by the generated selection set.
var __data: DataDict { get }
/// **For Internal Use Only -** Designated Initializer
///
/// - Warning: This initializer is not supported for public use. It should only be used by the
/// `GraphQLSelectionSetMapper`, which is guaranteed by the GraphQL compiler to be safe.
/// Unsupported usage may result in unintended consequences including crashes.
///
/// To manually initialize a ``SelectionSet`` model with JSON data, use
/// `SelectionSet.init(data: JSONObject, variables: GraphQLOperation.Variables?)` in
/// the `Apollo` library.
///
/// To generate type safe initializers for your selection set models, use the
/// `selectionSetInitializers` option in your code generation configuration.
///
/// - Parameter dataDict: The data of the underlying GraphQL object represented by the generated
/// selection set.
init(_dataDict: DataDict)
}
extension SelectionSet {
@inlinable public static var __selections: [Selection] { [] }
@inlinable public var __objectType: Object? {
guard let __typename else { return nil }
return Schema.objectType(forTypename: __typename)
}
@inlinable public var __typename: String? { __data["__typename"] }
/// Verifies if a `SelectionSet` may be converted to an `InlineFragment` and performs
/// the conversion.
///
/// - Warning: This function is not supported for use outside of generated call sites.
/// Generated call sites are guaranteed by the GraphQL compiler to be safe.
/// Unsupported usage may result in unintended consequences including crashes.
@_disfavoredOverload
@inlinable public func _asInlineFragment<T: SelectionSet>() -> T? {
guard __data.fragmentIsFulfilled(T.self) else { return nil }
return T.init(_dataDict: __data)
}
@inlinable public func _asInlineFragment<T: CompositeInlineFragment>() -> T? {
guard __data.fragmentsAreFulfilled(T.__mergedSources) else { return nil }
return T.init(_dataDict: __data)
}
@inlinable public func hash(into hasher: inout Hasher) {
hasher.combine(__data)
}
@inlinable public static func ==(lhs: Self, rhs: Self) -> Bool {
return lhs.__data == rhs.__data
}
public var debugDescription: String {
return "\(self.__data._data as AnyObject)"
}
}
extension SelectionSet where Fragments: FragmentContainer {
/// Contains accessors for all of the fragments the `SelectionSet` can be converted to.
public var fragments: Fragments { Fragments(_dataDict: __data) }
}
extension InlineFragment {
@inlinable public var asRootEntityType: RootEntityType {
RootEntityType.init(_dataDict: __data)
}
}