graphql-schema-utilities
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -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'); |
{ | ||
"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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
101941
1144
1