@braindb/core
Version:
markdown-graph-content-layer-database
23 lines (22 loc) • 427 B
TypeScript
import { Db } from "./db.js";
export declare function toGraphology(db: Db): {
attributes: {
name: string;
};
options: {
allowSelfLoops: boolean;
multi: boolean;
type: string;
};
nodes: {
key: number;
attributes: {
label: string;
url: string;
};
}[];
edges: {
source: number;
target: number;
}[];
};