我有这样的行为,第一个调用使用JanusGraph查询返回值
JG.query().has("geo_shape", Geo.WITHIN,
Geoshape.circle(12, 13, 100.0)).vertices().count()而下一行不返回结果!
val c = JG.traversal().V().has("geo_shape",
within(Geoshape.circle(12, 13, 100.0))).count().next()发布于 2019-01-07 15:20:11
根据查询示例,您的查询应该更像这样:
JG.traversal().V().has("geo_shape",
geoWithin(Geoshape.circle(12, 13, 100.0))).count().next()https://stackoverflow.com/questions/54073336
复制相似问题