@jackchuka/gql-ingest 4.2.21 → 4.2.23

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/dist/index.js CHANGED
@@ -15597,7 +15597,7 @@ var DependencyResolver = class {
15597
15597
  return errors;
15598
15598
  }
15599
15599
  getDependents(entityName) {
15600
- return Object.entries(this.dependencies).filter(([_, deps]) => deps.includes(entityName)).map(([entity, _]) => entity);
15600
+ return Object.entries(this.dependencies).filter(([, deps]) => deps.includes(entityName)).map(([entity]) => entity);
15601
15601
  }
15602
15602
  getDependencies(entityName) {
15603
15603
  return this.dependencies[entityName] || [];