Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ardatan/graphql-helix

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ardatan/graphql-helix - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

20

dist/util/get-response.js

@@ -37,10 +37,3 @@ "use strict";

controller.enqueue(`---`);
const iterator = asyncExecutionResult[Symbol.asyncIterator]();
while (true) {
const { done, value } = await iterator.next();
if (done) {
controller.enqueue("\r\n-----\r\n");
controller.close();
break;
}
for await (const value of asyncExecutionResult) {
const transformedResult = transformResult(value);

@@ -61,2 +54,4 @@ const chunk = JSON.stringify(transformedResult);

}
controller.enqueue("\r\n-----\r\n");
controller.close();
}

@@ -84,9 +79,3 @@ catch (e) {

try {
const iterator = asyncExecutionResult[Symbol.asyncIterator]();
while (true) {
const { done, value } = await iterator.next();
if (done) {
controller.close();
break;
}
for await (const value of asyncExecutionResult) {
const transformedResult = transformResult(value);

@@ -96,2 +85,3 @@ const chunk = JSON.stringify(transformedResult);

}
controller.close();
}

@@ -98,0 +88,0 @@ catch (e) {

{
"name": "@ardatan/graphql-helix",
"version": "0.0.7",
"version": "0.0.8",
"description": "A highly evolved GraphQL HTTP Server 🧬",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

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