graphql-to-postman
Advanced tools
Comparing version 0.0.10 to 0.0.11
# Changelog for graphql-to-postman | ||
### v0.0.11 (Sept 27, 2021) | ||
* Fix for - [#24](https://github.com/postmanlabs/graphql-to-postman/issues/24) Fixed an issue where nesting was faulty. | ||
### v0.0.10 (Sept 27, 2021) | ||
@@ -4,0 +7,0 @@ * Fix for - [#9884](https://github.com/postmanlabs/postman-app-support/issues/9884) Fixed an issue with union types self referencing |
// Forked from https://github.com/timqian/gql-generator. | ||
var graphql = require('graphql'), | ||
_ = require('lodash'), | ||
@@ -188,3 +189,3 @@ /** | ||
return generateQuery(cur, curType, curName, argumentsDict, duplicateArgCounts, | ||
crossReferenceKeyList, curDepth + 1).queryStr; | ||
_.cloneDeep(crossReferenceKeyList), curDepth + 1).queryStr; | ||
}) | ||
@@ -232,3 +233,3 @@ .filter((cur) => { | ||
return generateQuery(cur, valueType, curName, argumentsDict, duplicateArgCounts, | ||
crossReferenceKeyList, curDepth + 2).queryStr; | ||
_.cloneDeep(crossReferenceKeyList), curDepth + 2).queryStr; | ||
}) | ||
@@ -235,0 +236,0 @@ .filter((cur) => { return cur; }) |
{ | ||
"name": "graphql-to-postman", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "Generates a Postman Collection from a GraphQL schema.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
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
51354
712