@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/cli/index.js +82 -82
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
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(([
|
|
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] || [];
|