GraphQuery Type
Query for traversing the knowledge graph
Union cases
| Union case |
Description
|
Full Usage:
ByEntity entity
Parameters:
string
|
Find all relations where entity is subject or object
|
Full Usage:
ByPredicate predicate
Parameters:
string
|
Find all relations with a given predicate
|
Full Usage:
ByProperties filters
Parameters:
(string * string) list
|
Find entities matching property filters
|
Full Usage:
Neighborhood(entity, hops)
Parameters:
string
hops : int
|
Find related entities within N hops
|
Full Usage:
Path(from', to', maxHops)
Parameters:
string
to' : string
maxHops : int
|
Find paths between two entities (max hops)
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsByEntity
Returns: bool
|
|
Full Usage:
this.IsByPredicate
Returns: bool
|
|
Full Usage:
this.IsByProperties
Returns: bool
|
|
Full Usage:
this.IsNeighborhood
Returns: bool
|
|
Full Usage:
this.IsPath
Returns: bool
|
|
Nao