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

graphql-schema-utilities

Package Overview
Dependencies
Maintainers
3
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-schema-utilities - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

5

dist/printers.js

@@ -231,2 +231,4 @@ "use strict";

return printStringValueNode(type);
case 'ListValue':
return printListValueNode(type);
}

@@ -244,2 +246,5 @@ throw Error('Cannot print complex directive of type: ' + String(type.kind));

}
function printListValueNode(node) {
return '[' + node.values.map(printArgumentValueNode).join(', ') + ']';
}
function descriptionLines(description, maxLen) {

@@ -246,0 +251,0 @@ const rawLines = description.split('\n');

2

package.json
{
"name": "graphql-schema-utilities",
"version": "1.1.0",
"version": "1.1.1",
"description": "Merge GraphQL Schema files and validate queries against the merged Schema",

@@ -5,0 +5,0 @@ "repository": {

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