Gremlin-Javascript:支持 SubgraphStrategy 和子图步骤
Gremlin-Javascript: Support for SubgraphStrategy and subgraph step
我正在 运行 通过以下教程使用 Javascript 的 Gremlin 客户端。有谁知道是否支持这种策略?我尝试使用 subgraph 步骤,但我似乎也无法正常工作。
教程:https://www.datastax.com/blog/2016/09/gremlins-time-machine
客户:https://www.npmjs.com/package/gremlin
您目前无法在 javascript 中使用 SubgraphStrategy
- 至少在 TINKERPOP-2054. subgraph()
step is not supported in Gremlin Language Variants that are not running on the JVM - at least not until TINKERPOP-2063. There are some alternatives to using subgraph()
step discussed in this blog post 之前不能,其要点是将其替换为 [=13] =] 然后开发自己的方法来处理客户端的图形数据。对于某些可能足以解决缺少该步骤的限制的用例。
我正在 运行 通过以下教程使用 Javascript 的 Gremlin 客户端。有谁知道是否支持这种策略?我尝试使用 subgraph 步骤,但我似乎也无法正常工作。
教程:https://www.datastax.com/blog/2016/09/gremlins-time-machine 客户:https://www.npmjs.com/package/gremlin
您目前无法在 javascript 中使用 SubgraphStrategy
- 至少在 TINKERPOP-2054. subgraph()
step is not supported in Gremlin Language Variants that are not running on the JVM - at least not until TINKERPOP-2063. There are some alternatives to using subgraph()
step discussed in this blog post 之前不能,其要点是将其替换为 [=13] =] 然后开发自己的方法来处理客户端的图形数据。对于某些可能足以解决缺少该步骤的限制的用例。