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

@graphql-tools/executor

Package Overview
Dependencies
Maintainers
3
Versions
419
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-tools/executor - npm Package Compare versions

Comparing version 0.0.3-alpha-20221101120543-bb38d9e3 to 0.0.3-alpha-20221101131317-20a4af5d

28

cjs/execution/normalizedExecutor.js

@@ -27,15 +27,3 @@ "use strict";

}
if ('incremental' in value && value.incremental) {
const incrementalLength = value.incremental.length;
value.incremental.forEach((item, index) => {
const hasNext = index === incrementalLength - 1;
push({
...item,
hasNext,
});
});
}
else {
push(value);
}
push(value);
}

@@ -61,15 +49,3 @@ });

}
if (value.incremental) {
const incrementalLength = value.incremental.length;
value.incremental.forEach((item, index) => {
const hasNext = index === incrementalLength - 1;
push({
...item,
hasNext,
});
});
}
push({
hasNext: false,
});
push(value);
}

@@ -76,0 +52,0 @@ });

@@ -24,15 +24,3 @@ import { isAsyncIterable } from '@graphql-tools/utils';

}
if ('incremental' in value && value.incremental) {
const incrementalLength = value.incremental.length;
value.incremental.forEach((item, index) => {
const hasNext = index === incrementalLength - 1;
push({
...item,
hasNext,
});
});
}
else {
push(value);
}
push(value);
}

@@ -58,15 +46,3 @@ });

}
if (value.incremental) {
const incrementalLength = value.incremental.length;
value.incremental.forEach((item, index) => {
const hasNext = index === incrementalLength - 1;
push({
...item,
hasNext,
});
});
}
push({
hasNext: false,
});
push(value);
}

@@ -73,0 +49,0 @@ });

4

package.json
{
"name": "@graphql-tools/executor",
"version": "0.0.3-alpha-20221101120543-bb38d9e3",
"version": "0.0.3-alpha-20221101131317-20a4af5d",
"sideEffects": false,

@@ -10,3 +10,3 @@ "peerDependencies": {

"@repeaterjs/repeater": "3.0.4",
"@graphql-tools/utils": "9.0.0-alpha-20221101120543-bb38d9e3",
"@graphql-tools/utils": "9.0.0-alpha-20221101131317-20a4af5d",
"@graphql-typed-document-node/core": "3.1.1",

@@ -13,0 +13,0 @@ "value-or-promise": "1.0.1"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc