在 bluemix 上的 IBM Graph 服务中进行此 gremlin 查询时出现错误

Getting an Error when I make this gremlin query in IBM Graph service on bluemix

当我使用 IBM Graph 的 gremlin 端点发出此 gremlin 查询时,出现错误

curl -u username:password -H 'Content-Type: application/json' -d '{"gremlin": "g = graph.traversal(); g.V(4144)"}' -X POST "http://../g/gremlin"

有什么想法吗?

在 IBM Graph 中,要求您在使用 gremlin 查询之前显式声明所有变量。所以上面的查询应该看起来像这样:

curl -u username:password -H 'Content-Type: application/json' -d '{"gremlin": "def g = graph.traversal( ); g.V(4144)"}' -X POST "http://../g/gremlin"