@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.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