g3-toolkit API Reference
    Preparing search index...

    Interface Holon

    A holon in the four-graph model (Interior, Boundary, Projection, Context).

    interface Holon {
        id: string;
        interiorEdges?: {
            properties?: PropertyMap;
            source: string;
            target: string;
            type: string;
        }[];
        interiorNodes?: { id: string; properties: PropertyMap; types: string[] }[];
        label: string;
        portals: Portal[];
        properties: PropertyMap;
        types: string[];
    }
    Index

    Properties

    id: string
    interiorEdges?: {
        properties?: PropertyMap;
        source: string;
        target: string;
        type: string;
    }[]

    Interior graph edges.

    interiorNodes?: { id: string; properties: PropertyMap; types: string[] }[]

    Interior graph nodes (simplified flat representation).

    label: string
    portals: Portal[]

    Portals connecting this holon to others.

    properties: PropertyMap
    types: string[]