Graphora API
    Preparing search index...

    Type Alias GraphViewRefreshResult<NodeData, EdgeData>

    GraphViewRefreshResult:
        | { ok: true; snapshot: GraphViewSnapshot<NodeData, EdgeData> }
        | {
            attemptedSourceVersion: number;
            error: unknown;
            lastCommittedSnapshot: GraphViewSnapshot<NodeData, EdgeData>;
            ok: false;
        }

    Type Parameters

    • NodeData = unknown
    • EdgeData = unknown