New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nerdwallet/apollo-cache-policies

Package Overview
Dependencies
Maintainers
15
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nerdwallet/apollo-cache-policies - npm Package Compare versions

Comparing version

to
2.0.2

4

CHANGELOG.md

@@ -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 @@

10

dist/cache/CacheResultProcessor.js

@@ -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