Raven DB HTTP API - Property Traversal

时间:2013-01-08 17:00:26

标签: ravendb ravendb-http

我获得了以下JSON结构:

{
    "document": {
        "sections": {
            "x": {
                "title": "foo"
            },
            "y": {
                "title": "bar"
            }
        }
    }
}

如何使用HTTP API更新给定部分的title属性值?

我想提供一个到达酒店的路径(字符串)。

1 个答案:

答案 0 :(得分:0)

这在构建2254中得到修复。您现在应该可以发出这样的脚本补丁:

EVAL http://localhost:8080/docs/foos/1

{Script:"this.document.sections.x.title = newTitle;",Values:{"newTitle":"Whatever"}}