Socket
Socket
Sign inDemoInstall

graphql

Package Overview
Dependencies
Maintainers
8
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql - npm Package Compare versions

Comparing version 17.0.0-alpha.3.canary.pr.4032.4fb41fe3e1f2b4b27437138d6d7d4763c1992e7a to 17.0.0-alpha.3.canary.pr.4035.3404abc2382e32f6a3ab26f08a9ed54554678fa9

11

execution/execute.js

@@ -22,3 +22,2 @@ 'use strict';

const promiseReduce_js_1 = require('../jsutils/promiseReduce.js');
const resolveAfterAll_js_1 = require('../jsutils/resolveAfterAll.js');
const GraphQLError_js_1 = require('../error/GraphQLError.js');

@@ -487,3 +486,3 @@ const locatedError_js_1 = require('../error/locatedError.js');

// same map, but with any promises replaced with the values they resolved to.
return (0, resolveAfterAll_js_1.resolveAfterAll)(acc, promises);
return Promise.all(promises).then(() => acc);
}

@@ -921,5 +920,3 @@ function toNodes(fieldGroup) {

}
return promises.length > 0
? (0, resolveAfterAll_js_1.resolveAfterAll)(acc, promises)
: acc;
return promises.length > 0 ? Promise.all(promises).then(() => acc) : acc;
}

@@ -1013,5 +1010,3 @@ /**

}
return promises.length > 0
? (0, resolveAfterAll_js_1.resolveAfterAll)(acc, promises)
: acc;
return promises.length > 0 ? Promise.all(promises).then(() => acc) : acc;
}

@@ -1018,0 +1013,0 @@ /**

{
"name": "graphql",
"version": "17.0.0-alpha.3.canary.pr.4032.4fb41fe3e1f2b4b27437138d6d7d4763c1992e7a",
"version": "17.0.0-alpha.3.canary.pr.4035.3404abc2382e32f6a3ab26f08a9ed54554678fa9",
"description": "A Query Language and Runtime which can target any service.",

@@ -35,7 +35,7 @@ "license": "MIT",

"publishConfig": {
"tag": "canary-pr-4032"
"tag": "canary-pr-4035"
},
"main": "index",
"module": "index.mjs",
"deprecated": "You are using canary version build from https://github.com/graphql/graphql-js/pull/4032, no gurantees provided so please use your own discretion."
"deprecated": "You are using canary version build from https://github.com/graphql/graphql-js/pull/4035, no gurantees provided so please use your own discretion."
}

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