You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by je...@apache.org on 2023/01/15 13:47:22 UTC

[incubator-hugegraph-doc] branch master updated: update vertex.md for fuzzy query (#184)

This is an automated email from the ASF dual-hosted git repository.

jermy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git


The following commit(s) were added to refs/heads/master by this push:
     new 51395899 update vertex.md for fuzzy query (#184)
51395899 is described below

commit 5139589982d87e716e05bfc3d4313f785a69a9d8
Author: yicong <11...@qq.com>
AuthorDate: Sun Jan 15 21:47:17 2023 +0800

    update vertex.md for fuzzy query (#184)
---
 content/en/docs/clients/restful-api/vertex.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/en/docs/clients/restful-api/vertex.md b/content/en/docs/clients/restful-api/vertex.md
index 0db38d0d..82947be2 100644
--- a/content/en/docs/clients/restful-api/vertex.md
+++ b/content/en/docs/clients/restful-api/vertex.md
@@ -385,7 +385,7 @@ PUT http://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")},`范围匹配支持的表达式如下:
 
 | 表达式                                | 说明                          |
 |------------------------------------|-----------------------------|