私は次の詳細を持つ頂点を持っています:
{
"requestId": "6ce01f3b-f623-41f6-bb03-dd56014e0701",
"status":
{
"message": "",
"code": 200,
"attributes": { }
},
"result":
{
"data":
[
{
"id": 4192,
"label": "person",
"type": "vertex",
"properties":
{
"name":
[
{
"id": "170-38g-sl",
"value": "marko2"
}
],
"age":
[
{
"id": "1l8-38g-28lh",
"value": 29
}
]
}
}
],
"meta": { }
}
}
頂点の名前を更新したい:
次のクエリを試しました:
gV(4192).setProperty('名前','ウィリアム')
しかし、それは更新されていません。エラーが発生しています
{
"message": "Error encountered evaluating script: g.V(4192).setProperty('name','William')"
}