import { type SubgraphName, type TypeName } from '../../types/types'; export type EntityAncestorData = { fieldSetsByTargetSubgraphName: Map>; subgraphName: SubgraphName; typeName: TypeName; }; export type EntityAncestorCollection = { fieldSetsByTargetSubgraphName: Map>; sourceSubgraphNamesBySatisfiedFieldSet: Map>; subgraphNames: Array; typeName: TypeName; }; export type SelectionSetSegments = { outputEnd: string; outputStart: string; pathNodes: Array; };