Comparing version 17.0.0-alpha.3 to 17.0.0-alpha.3.canary.pr.3969.83688beb16ecba5a0495158c3c2b3684730579bf
{ | ||
"name": "graphql", | ||
"version": "17.0.0-alpha.3", | ||
"version": "17.0.0-alpha.3.canary.pr.3969.83688beb16ecba5a0495158c3c2b3684730579bf", | ||
"description": "A Query Language and Runtime which can target any service.", | ||
@@ -35,6 +35,7 @@ "license": "MIT", | ||
"publishConfig": { | ||
"tag": "alpha" | ||
"tag": "canary-pr-3969" | ||
}, | ||
"main": "index", | ||
"module": "index.mjs" | ||
} | ||
"module": "index.mjs", | ||
"deprecated": "You are using canary version build from https://github.com/graphql/graphql-js/pull/3969, no gurantees provided so please use your own discretion." | ||
} |
@@ -177,3 +177,8 @@ 'use strict'; | ||
); | ||
return printDescription(type) + `input ${type.name}` + printBlock(fields); | ||
return ( | ||
printDescription(type) + | ||
`input ${type.name}` + | ||
(type.isOneOf ? ' @oneOf' : '') + | ||
printBlock(fields) | ||
); | ||
} | ||
@@ -180,0 +185,0 @@ function printFields(type) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1433630
44262
1