We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b471acf commit d0f0a87Copy full SHA for d0f0a87
Sources/Apollo/GraphQLResult.swift
@@ -20,7 +20,9 @@ public struct GraphQLResult<Data: RootSelectionSet> {
20
/// Source of data
21
public let source: Source
22
23
- let dependentKeys: Set<CacheKey>?
+ /// The cache keys for the fields that were included in this response. Custom ``ApolloStoreSubscriber``s can use these
24
+ /// keys to understand when changes to the cache would affect the result of a specific response.
25
+ public let dependentKeys: Set<CacheKey>?
26
27
public init(
28
data: Data?,
0 commit comments