Gremlin 查询在 TinkerGraph、JanusGraph 和 Neo4j 中有效,但在 DSE Graph 6.8.1 中无效
Gremlin query works in TinkerGraph, JanusGraph and Neo4j but not in DSE Graph 6.8.1
我有以下查询,它在 TinkerGraph、JanusGraph 和 Neo4j-Gremlin 上没有任何问题:
g.V().has('Account','address','0x0').
out('sent').has('eventName','Transfer').as('t1').
out('received_by').has('type','EOA').has('status','Active').as('a2').
out('sent').has('eventName','Transfer').as('t2').
where('t1',eq('t2')).by('address').
where('t1',eq('t2')).by('amount').
out('received_by').has('type','EOA').has('status','Active').as('a3').
select('a3','a2').
by('address').
group().
by('a3').
by('a2').
unfold().
where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))
但是使用 DataStax Graph 时出现以下错误:
java.util.LinkedHashMap cannot be cast to org.apache.tinkerpop.gremlin.structure.Element
我知道问题出在 select 之后,但我无法弄清楚是哪一点真正失败了。任何想法都会有所帮助。谢谢
DataStax Graph 6.8.1 使用早期版本的 TinkerPop 3.4.5。该版本不包含允许 by(String)
在 Map
上工作的 the full release feature。您应该能够将遍历重写为:
g.V().has('Account','address','0x0').
out('sent').has('eventName','Transfer').as('t1').
out('received_by').has('type','EOA').has('status','Active').as('a2').
out('sent').has('eventName','Transfer').as('t2').
where('t1',eq('t2')).by('address').
where('t1',eq('t2')).by('amount').
out('received_by').has('type','EOA').has('status','Active').as('a3').
select('a3','a2').
by('address').
group().
by(select('a3')).
by(select('a2').fold()).
unfold().
where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))
我有以下查询,它在 TinkerGraph、JanusGraph 和 Neo4j-Gremlin 上没有任何问题:
g.V().has('Account','address','0x0').
out('sent').has('eventName','Transfer').as('t1').
out('received_by').has('type','EOA').has('status','Active').as('a2').
out('sent').has('eventName','Transfer').as('t2').
where('t1',eq('t2')).by('address').
where('t1',eq('t2')).by('amount').
out('received_by').has('type','EOA').has('status','Active').as('a3').
select('a3','a2').
by('address').
group().
by('a3').
by('a2').
unfold().
where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))
但是使用 DataStax Graph 时出现以下错误:
java.util.LinkedHashMap cannot be cast to org.apache.tinkerpop.gremlin.structure.Element
我知道问题出在 select 之后,但我无法弄清楚是哪一点真正失败了。任何想法都会有所帮助。谢谢
DataStax Graph 6.8.1 使用早期版本的 TinkerPop 3.4.5。该版本不包含允许 by(String)
在 Map
上工作的 the full release feature。您应该能够将遍历重写为:
g.V().has('Account','address','0x0').
out('sent').has('eventName','Transfer').as('t1').
out('received_by').has('type','EOA').has('status','Active').as('a2').
out('sent').has('eventName','Transfer').as('t2').
where('t1',eq('t2')).by('address').
where('t1',eq('t2')).by('amount').
out('received_by').has('type','EOA').has('status','Active').as('a3').
select('a3','a2').
by('address').
group().
by(select('a3')).
by(select('a2').fold()).
unfold().
where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))