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

graphql

Package Overview
Dependencies
Maintainers
7
Versions
272
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 16.3.0-canary.pr.3504.7c7b6ed1e17e6cf5e114f1a89a24d289fb969aff to 16.3.0-canary.pr.3505.9190e5ce1cc557931a15ca1f7b15586f033c8a02

6

execution/collectFields.d.ts

@@ -26,3 +26,3 @@ import type { ObjMap } from '../jsutils/ObjMap';

selectionSet: SelectionSetNode,
): Map<string, readonly [FieldNode, ...Array<FieldNode>]>;
): Map<string, ReadonlyArray<FieldNode>>;
/**

@@ -45,3 +45,3 @@ * Given an array of field nodes, collects all of the subfields of the passed

returnType: GraphQLObjectType,
fieldNodes: readonly [FieldNode, ...Array<FieldNode>],
): Map<string, readonly [FieldNode, ...Array<FieldNode>]>;
fieldNodes: ReadonlyArray<FieldNode>,
): Map<string, ReadonlyArray<FieldNode>>;

@@ -145,3 +145,3 @@ import type { Maybe } from '../jsutils/Maybe';

fieldDef: GraphQLField<unknown, unknown>,
fieldNodes: readonly [FieldNode, ...Array<FieldNode>],
fieldNodes: ReadonlyArray<FieldNode>,
parentType: GraphQLObjectType,

@@ -148,0 +148,0 @@ path: Path,

{
"name": "graphql",
"version": "16.3.0-canary.pr.3504.7c7b6ed1e17e6cf5e114f1a89a24d289fb969aff",
"version": "16.3.0-canary.pr.3505.9190e5ce1cc557931a15ca1f7b15586f033c8a02",
"description": "A Query Language and Runtime which can target any service.",

@@ -37,5 +37,5 @@ "license": "MIT",

"publishConfig": {
"tag": "canary-pr-3504"
"tag": "canary-pr-3505"
},
"deprecated": "You are using canary version build from https://api.github.com/repos/graphql/graphql-js/pulls/3504, no gurantees provided so please use your own discretion."
"deprecated": "You are using canary version build from https://api.github.com/repos/graphql/graphql-js/pulls/3505, no gurantees provided so please use your own discretion."
}

@@ -305,6 +305,5 @@ import type { Maybe } from '../jsutils/Maybe';

*
* If a type's serialize function does not return a value (i.e. it returns
* If a type's serialize function returns `null` or does not return a value (i.e. it returns
* `undefined`) then an error will be raised and a `null` value will be returned
* in the response. If the serialize function returns `null`, then no error will
* be included in the response.
* in the response.
*

@@ -497,3 +496,3 @@ * Example:

readonly fieldName: string;
readonly fieldNodes: readonly [FieldNode, ...Array<FieldNode>];
readonly fieldNodes: ReadonlyArray<FieldNode>;
readonly returnType: GraphQLOutputType;

@@ -500,0 +499,0 @@ readonly parentType: GraphQLObjectType;

@@ -523,6 +523,5 @@ 'use strict';

*
* If a type's serialize function does not return a value (i.e. it returns
* If a type's serialize function returns `null` or does not return a value (i.e. it returns
* `undefined`) then an error will be raised and a `null` value will be returned
* in the response. If the serialize function returns `null`, then no error will
* be included in the response.
* in the response.
*

@@ -529,0 +528,0 @@ * Example:

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