Skip to content

Commit

Permalink
update vertex.md for fuzzy query (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
cygoodboy committed Jan 15, 2023
1 parent c7e259c commit 5139589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/clients/restful-api/vertex.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ PUT https://127.0.0.1:8080/graphs/hugegraph/graph/vertices/"1:marko"?action=elimi

以上参数都是可选的,如果提供page参数,必须提供limit参数,不允许带其他参数。`label, properties``limit`可以任意组合。

属性键值对由JSON格式的属性名称和属性值组成,允许多个属性键值对作为查询条件,属性值支持精确匹配和范围匹配,精确匹配时形如`properties={"age":29}`,范围匹配时形如`properties={"age":"P.gt(29)"}`,范围匹配支持的表达式如下:
属性键值对由JSON格式的属性名称和属性值组成,允许多个属性键值对作为查询条件,属性值支持精确匹配、范围匹配和模糊匹配,精确匹配时形如`properties={"age":29}`,范围匹配时形如`properties={"age":"P.gt(29)"}`,模糊匹配时形如`properties={"city": "P.textcontains("ChengDu China")},`范围匹配支持的表达式如下:

| 表达式 | 说明 |
|------------------------------------|-----------------------------|
Expand Down

0 comments on commit 5139589

Please sign in to comment.