@biothings-explorer/query_graph_handler
Version:
A nodejs module to query TRAPI Query Graph
20 lines (19 loc) • 486 B
TypeScript
export = KGNode;
declare class KGNode {
constructor(id: any, info: any);
id: any;
_primaryID: any;
_qgID: any;
_curies: any;
_semanticType: any;
_nodeAttributes: any;
_label: any;
_sourceNodes: Set<any>;
_targetNodes: Set<any>;
_sourceQGNodes: Set<any>;
_targetQGNodes: Set<any>;
addSourceNode(kgNode: any): void;
addTargetNode(kgNode: any): void;
addSourceQGNode(qgNode: any): void;
addTargetQGNode(qgNode: any): void;
}