Skip to content

Commit c497e04

Browse files
committed
Change comment on symbol
1 parent e03b60c commit c497e04

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/cache/inmemory/inMemoryCache.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,9 @@ export class InMemoryCache extends ApolloCache {
109109
// in development and expected to remain logically immutable in production.
110110
public readonly assumeImmutableResults = true;
111111

112-
// NOTE: Only InMemoryCache should set this value to true. The update is too
113-
// complex to opt-in for 3rd party caches. Once we get to v5, we should
114-
// enforce that caches handle incremental queries correctly which should allow
115-
// us to provide more robust guidance on what to return. Having to maintain
116-
// backwards-compatibility with this flag is too difficult an ask for now.
112+
// InMemoryCache can handle incremental results in cache.diff. 3rd party
113+
// caches that want to handle incremental results should talk to the Apollo
114+
// Client team on how to handle this in Apollo Client 4.x.
117115
public readonly [handleIncrementalSymbol] = true;
118116

119117
// Dynamically imported code can augment existing typePolicies or

0 commit comments

Comments
 (0)