Documentation
    Preparing search index...

    Type Alias GraphStructure<AnyEntity>

    GraphStructure: AnyEntity extends IGraphBaseEntityNode<
        infer Id,
        infer Type,
        infer Props,
    >
        ? {
            id: Id;
            props: Props;
            sources?: GraphStructure<AnyEntity>[];
            targets?: GraphStructure<AnyEntity>[];
            type: Type;
        }
        : never

    Hierarchy structure of a node in the graph.

    Type Parameters

    v0.0.2