| Knowledge {graphQL.Graph} | .NET clr documentation |
A knowledge node in this graph database
# namespace graphQL.Graph
export class Knowledge extends Vertex {
evidence: iterates(Evidence);
ID: integer;
# current knowledge term is a master source term?
isMaster: boolean;
label: string;
# the count of the current knowledge term
# has been mentioned in the knowledge
# network.
mentions: integer;
# the data source of this knowledge term node
source: iterates(String);
# the data type of the current term data.
type: string;
}
evidence: iterates(Evidence)source: iterates(String)