UNPKG

@biothings-explorer/query_graph_handler

Version:
37 lines (36 loc) 813 B
export = KnowledgeGraph; declare class KnowledgeGraph { nodes: {}; edges: {}; kg: { nodes: {}; edges: {}; }; getNodes(): {}; getEdges(): {}; _createNode(kgNode: any): { categories: string[]; name: any; attributes: { attribute_type_id: string; value: any; value_type_id: string; }[]; }; _createAttributes(kgEdge: any): { attribute_type_id: string; value: any[]; value_type_id: string; }[]; _createEdge(kgEdge: any): { predicate: any; subject: any; object: any; attributes: { attribute_type_id: string; value: any[]; value_type_id: string; }[]; }; update(bteGraph: any): void; }