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 b21595a commit 656fd85Copy full SHA for 656fd85
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