Skip to content

Commit 49483ad

Browse files
authored
feat: Expose possibleTypes on cache (zino-hofmann#906)
1 parent cb5b789 commit 49483ad

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

packages/graphql/lib/src/cache/_normalizing_data_proxy.dart

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
1717
/// `typePolicies` to pass down to `normalize`
1818
Map<String, TypePolicy> get typePolicies;
1919

20+
/// `possibleTypes` to pass down to [normalize]
21+
Map<String, Set<String>> get possibleTypes;
22+
2023
/// Optional `dataIdFromObject` function to pass through to [normalize]
2124
DataIdResolver? get dataIdFromObject;
2225

@@ -92,6 +95,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
9295
document: request.operation.document,
9396
operationName: request.operation.operationName,
9497
variables: sanitizeVariables(request.variables)!,
98+
possibleTypes: possibleTypes,
9599
);
96100

97101
Map<String, dynamic>? readFragment(
@@ -112,6 +116,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
112116
idFields: fragmentRequest.idFields,
113117
fragmentName: fragmentRequest.fragment.fragmentName,
114118
variables: sanitizeVariables(fragmentRequest.variables)!,
119+
possibleTypes: possibleTypes,
115120
);
116121

117122
void writeQuery(
@@ -134,6 +139,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
134139
variables: sanitizeVariables(request.variables)!,
135140
// data
136141
data: data,
142+
possibleTypes: possibleTypes,
137143
);
138144
if (broadcast ?? true) {
139145
broadcastRequested = true;
@@ -171,6 +177,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
171177
variables: sanitizeVariables(request.variables)!,
172178
// data
173179
data: data,
180+
possibleTypes: possibleTypes,
174181
);
175182
if (broadcast ?? true) {
176183
broadcastRequested = true;

packages/graphql/lib/src/cache/_optimistic_transactions.dart

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ class OptimisticProxy extends NormalizingDataProxy {
4444
/// `typePolicies` to pass down to `normalize` (proxied from [cache])
4545
get typePolicies => cache.typePolicies;
4646

47+
/// `possibleTypeOf` to pass down to `normalize` (proxied from [cache])
48+
get possibleTypes => cache.possibleTypes;
49+
4750
/// Optional `dataIdFromObject` function to pass through to [normalize]
4851
/// (proxied from [cache])
4952
get dataIdFromObject => cache.dataIdFromObject;

packages/graphql/lib/src/cache/cache.dart

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class GraphQLCache extends NormalizingDataProxy {
3232
Store? store,
3333
this.dataIdFromObject,
3434
this.typePolicies = const {},
35+
this.possibleTypes = const {},
3536
this.partialDataPolicy = PartialDataCachePolicy.acceptForOptimisticData,
3637
Object? Function(Object?) sanitizeVariables = sanitizeFilesForCache,
3738
}) : sanitizeVariables = variableSanitizer(sanitizeVariables),
@@ -60,6 +61,9 @@ class GraphQLCache extends NormalizingDataProxy {
6061
/// `typePolicies` to pass down to [normalize]
6162
final Map<String, TypePolicy> typePolicies;
6263

64+
/// `possibleTypes` to pass down to [normalize]
65+
final Map<String, Set<String>> possibleTypes;
66+
6367
/// Optional `dataIdFromObject` function to pass through to [normalize]
6468
final DataIdResolver? dataIdFromObject;
6569

packages/graphql/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
gql_error_link: ^0.2.0
1414
gql_dedupe_link: ^2.0.0
1515
hive: ^2.0.0
16-
normalize: ^0.5.1
16+
normalize: ^0.5.3
1717
http: ^0.13.0
1818
collection: ^1.15.0
1919
web_socket_channel: ^2.0.0

0 commit comments

Comments
 (0)