AWS Neptune 中的元属性

Meta Properties in AWS Neptune

在 AWS Neptune 中,我正在探索如何将元属性(属性的属性)添加到顶点,如 here 所述。 尝试后我发现 Neptune 抛出一个错误:

Req - {"gremlin":"g.V(v).properties('name').hasValue('host-123').property('acl','private')"}
Response - 
{
"detailedMessage": "Properties on a vertex property is not supported",
"requestId": "a72b1552-aa9e-42aa-8a38-103b3acdde32",
"code": "UnsupportedOperationException"
}

我还查看了 AWS Neptune 文档 here,上面写着

Neptune does not support Gremlin variables and does not support the bindings property.

它们是否相同?有人知道 AWS neptune 是否支持元属性吗?

Amazon Neptune 目前不支持元属性(属性上的属性)。

Gremlin“变量和绑定”指的是将脚本作为文本提交到服务器,服务器在其中编译脚本并保存它以备将来使用不同的参数(变量)重复使用。 Neptune 有自己的查询优化器和执行引擎,因此在使用 Neptune 时不需要这些类型的绑定。