And I also have an edge (it is an out edge of above vertex) as below.
I can query with following SQL statements.
However when I combined the 2 filters above, there is no vertex out from the query.
Is there anyone guide me the correct filter I can use?
you can use MATCH
select expand(vv) from (
MATCH
{
class: GW_Score,
as: vv,
where: (@rid=20:6)
}
.outE(){
as: ee,
where: (sessionStatus.keys() = "session1")
}
RETURN vv
)