@graphql-tools/utils 7.2.3 → 7.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es5/index.cjs.js +2 -2
- package/es5/index.cjs.js.map +1 -1
- package/es5/index.esm.js +2 -2
- package/es5/index.esm.js.map +1 -1
- package/es5/package.json +2 -2
- package/es5/selectionSets.d.ts +2 -1
- package/index.cjs.js +2 -2
- package/index.cjs.js.map +1 -1
- package/index.esm.js +2 -2
- package/index.esm.js.map +1 -1
- package/package.json +2 -2
- package/selectionSets.d.ts +2 -1
package/es5/index.esm.js
CHANGED
|
@@ -3589,8 +3589,8 @@ function isObject(item) {
|
|
|
3589
3589
|
return item && typeof item === 'object' && !Array.isArray(item);
|
|
3590
3590
|
}
|
|
3591
3591
|
|
|
3592
|
-
function parseSelectionSet(selectionSet) {
|
|
3593
|
-
var query = parse(selectionSet).definitions[0];
|
|
3592
|
+
function parseSelectionSet(selectionSet, options) {
|
|
3593
|
+
var query = parse(selectionSet, options).definitions[0];
|
|
3594
3594
|
return query.selectionSet;
|
|
3595
3595
|
}
|
|
3596
3596
|
|