Graphora API
    Preparing search index...

    Interface GraphologyLike<NodeAttributes, EdgeAttributes>

    interface GraphologyLike<
        NodeAttributes extends GraphologyAttributes = GraphologyAttributes,
        EdgeAttributes extends GraphologyAttributes = GraphologyAttributes,
    > {
        forEachEdge(
            callback: (
                edgeId: GraphId,
                attributes: EdgeAttributes,
                sourceId: GraphId,
                targetId: GraphId,
                sourceAttributes: NodeAttributes,
                targetAttributes: NodeAttributes,
                undirected: boolean,
            ) => void,
        ): void;
        forEachNode(
            callback: (nodeId: GraphId, attributes: NodeAttributes) => void,
        ): void;
    }

    Type Parameters

    Index