我pip
在 OSX 上使用 Gremlin Python,最新可用的版本是在 AWS Neptune 上托管的数据库。
我想使用来自先前遍历的边缘的值。
示例优于 10 行解释。
g.V(2).outE().values('stop_timestamp').store('stop_ts').inV().outE().where(has('start_ts', between('stop_ts', end_ts)))
我想使用该stop_ts
值(只是一个Int
)并在between
语句中使用它。
目前我只有这样的错误:
gremlin_python.driver.protocol.GremlinServerError: 597: Exception processing a script on request
我认为不可能使用来自先前遍历的边缘的值,这将是一种耻辱,但我需要确认。
编辑:似乎neq
&eq
不会崩溃,但不会between
, gte
, lte
(正如between
刚刚翻译成gte
and lte
)