Is there a way to define a recursive query in GRAQL, i.e. to match a pattern where an exact predicate path between entities is unknown (for example, how many of them)?
SPARQL added support for these in 1.1 version. Example from the Apache Jena Documentation:
# Find the types of :x, following subClassOf
SELECT *
{
:x rdf:type/rdfs:subClassOf* ?t
}
CYPHER also allows them from its inception. Example:
MATCH (alice:Person { name:"Alice" })-[:friend *1..2]->(friend:Person)
RETURN friend.name;
Is it possible to do something similar in GRAQL?
It is possible to achieve this in Graql, using Grakn's reasoning engine.
Graql
match
queries don't support a looping query syntax (yet, but it is planned), but you can define recursive logic in Grakn using arule
. To achieve recursion there should be a rule which contains in itswhen
something of the same type as is inferred in a rule'sthen
.In Graql this exact
friend
example goes as follows. This example doesn't use recursion as we are only looking for 1 or 2-hop looping.First you need a schema:
If this is your starting schema you'll need to extend it as follows to add recursion in a new
n-degree-friendship
relation:Then you can query for friends connected by any number of
friendship
relations as:This
friend
example isn't recursive, but it can be extended to be recursive. What Grakn cannot currently support is the number of times to loop.We can see a great example of recursion in the
subClassOf
example though:Then match to find all subclasses of
x
: