@nerdwallet/apollo-cache-policies
Advanced tools
Comparing version
@@ -0,1 +1,5 @@ | ||
2.0.2 (Dan Reynolds) | ||
* Fix a bug with evicting expired fields with a field alias | ||
2.0.1 (Dan Reynolds) | ||
@@ -2,0 +6,0 @@ |
@@ -101,3 +101,7 @@ "use strict"; | ||
var _a; | ||
const fieldName = utilities_1.resultKeyNameFromField(field); | ||
const fieldName = field.name.value; | ||
// While the field name is used as the key in the cache, the result object | ||
// will have it keyed by an alias name if provided so we keep track of the | ||
// result key name in case it needs to be removed from the response due to an evicted TTL | ||
const resultKeyName = utilities_1.resultKeyNameFromField(field); | ||
const subResultStatus = this.processReadSubResult(result, fieldName); | ||
@@ -138,3 +142,3 @@ const typename = (_a = entityTypeMap.readEntityById(helpers_1.makeEntityId(dataId, fieldName))) === null || _a === void 0 ? void 0 : _a.typename; | ||
if (evictedByStoreFieldNameForEntity || evictedByStoreFieldNameForQuery) { | ||
delete result[fieldName]; | ||
delete result[resultKeyName]; | ||
return false; | ||
@@ -191,3 +195,3 @@ } | ||
var _a; | ||
const fieldName = utilities_1.resultKeyNameFromField(field); | ||
const fieldName = field.name.value; | ||
const typename = (_a = entityTypeMap.readEntityById(helpers_1.makeEntityId(dataId, fieldName))) === null || _a === void 0 ? void 0 : _a.typename; | ||
@@ -194,0 +198,0 @@ if (typename) { |
{ | ||
"name": "@nerdwallet/apollo-cache-policies", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "An extension to the InMemoryCache from Apollo that adds additional cache policies.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
269756
0.19%2377
0.17%