如何通过OrientDB http api运行gremlin查询

时间:2016-12-27 00:42:04

标签: orientdb-2.1

在浏览器工作室中 CAN 运行以下命令:

select gremlin("g.v('12:0')") from #12:0 我得到了一个结果。

使用http api I CAN 运行以下命令:

<server>:[<port>]/command/pokeloungestage/sql/select * from #12:0 我得到了一个结果。

使用http api我可以不能运行以下命令:

<server>:[<port>]/command/pokeloungestage/sql/select gremlin("g.v('12:0')") from #12:0

与邮差我 CAN 运行以下命令:

---有适当的认证和cookie标头

<server>:[<port>]/command/pokeloungestage/gremlin/g.v("12:0")

使用http api I CAN NOT 运行以下命令:

<server>:[<port>]/command/pokeloungestage/gremlin/g.v("12:0")

1 个答案:

答案 0 :(得分:0)

问题是我正在运行GET请求,gremlin http API必须使用POST方法。