How to skip one (or more) level?
For example I have nodes type A that have edges to node type B and finally B to C.
Whether it possible to show relathionship in Ratel: C under A skipping B ?
How to skip one (or more) level?
For example I have nodes type A that have edges to node type B and finally B to C.
Whether it possible to show relathionship in Ratel: C under A skipping B ?
Something like this
BTW, Ratel won’t do any modifications. It is just a viewer.
{
q(func: type(A)) {
name
connectsTo @normalize { #This is the level B
connectsTo { #This is the level C
name : name
}
}
}
}