@@ -17,6 +17,9 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
17
17
/// `typePolicies` to pass down to `normalize`
18
18
Map <String , TypePolicy > get typePolicies;
19
19
20
+ /// `possibleTypes` to pass down to [normalize]
21
+ Map <String , Set <String >> get possibleTypes;
22
+
20
23
/// Optional `dataIdFromObject` function to pass through to [normalize]
21
24
DataIdResolver ? get dataIdFromObject;
22
25
@@ -92,6 +95,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
92
95
document: request.operation.document,
93
96
operationName: request.operation.operationName,
94
97
variables: sanitizeVariables (request.variables)! ,
98
+ possibleTypes: possibleTypes,
95
99
);
96
100
97
101
Map <String , dynamic >? readFragment (
@@ -112,6 +116,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
112
116
idFields: fragmentRequest.idFields,
113
117
fragmentName: fragmentRequest.fragment.fragmentName,
114
118
variables: sanitizeVariables (fragmentRequest.variables)! ,
119
+ possibleTypes: possibleTypes,
115
120
);
116
121
117
122
void writeQuery (
@@ -134,6 +139,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
134
139
variables: sanitizeVariables (request.variables)! ,
135
140
// data
136
141
data: data,
142
+ possibleTypes: possibleTypes,
137
143
);
138
144
if (broadcast ?? true ) {
139
145
broadcastRequested = true ;
@@ -171,6 +177,7 @@ abstract class NormalizingDataProxy extends GraphQLDataProxy {
171
177
variables: sanitizeVariables (request.variables)! ,
172
178
// data
173
179
data: data,
180
+ possibleTypes: possibleTypes,
174
181
);
175
182
if (broadcast ?? true ) {
176
183
broadcastRequested = true ;
0 commit comments