【发布时间】:2019-03-15 15:40:44
【问题描述】:
我的查询:
g.V().has("a","123").has("s","1").has("e","p").has("r","e-1").repeat(outE().where(values("startTime").is(gte("2018-12-15"))).where(values("endTime").is(lte("2018-12-16"))).otherV().simplePath()).emit().path().by(valueMap("a","s")).fold()
我得到的结果是
A-->B
A-->B-->C
A-->B-->C-->D
如何从输出中删除前 2 行?
期望的输出:A-->B-->C-->D
谢谢
【问题讨论】:
标签: gremlin