@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 CHANGED
@@ -3593,8 +3593,8 @@ function isObject(item) {
3593
3593
  return item && typeof item === 'object' && !Array.isArray(item);
3594
3594
  }
3595
3595
 
3596
- function parseSelectionSet(selectionSet) {
3597
- var query = graphql.parse(selectionSet).definitions[0];
3596
+ function parseSelectionSet(selectionSet, options) {
3597
+ var query = graphql.parse(selectionSet, options).definitions[0];
3598
3598
  return query.selectionSet;
3599
3599
  }
3600
3600