From ec2bf1b71fb50e64bfb5ed59cf3c169f37dc4bee Mon Sep 17 00:00:00 2001 From: foesa <35463247+foesa-yang@users.noreply.github.com> Date: Fri, 24 Sep 2021 13:36:32 +0800 Subject: [PATCH 1/4] Update 4.date-and-time.md --- docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md b/docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md index b323e0ffa99..5388c740ffa 100644 --- a/docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md +++ b/docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md @@ -87,16 +87,16 @@ The `TIMESTAMP` data type is used for values that contain both date and time par nebula> INSERT VERTEX date1(p1, p2, p3) VALUES "test1":(date("2021-03-17"), time("17:53:59"), datetime("2021-03-17T17:53:59")); ``` -3. Return the month of the property `p1` on `test1`. +3. Return the content of the property `p1` on `test1`. ```ngql nebula> CREATE TAG INDEX date1_index ON date1(p1); nebula> REBUILD TAG INDEX date1_index; - nebula> MATCH (v:date1) RETURN v.p1.month; + nebula> MATCH (v:date1) RETURN v.p1; +------------+ - | v.p1.month | + | v.p1 | +------------+ - | 3 | + | 2021-03-17 | +------------+ ``` From e0b4cfb02493c85dfdc3ed1b31c73010302e6332 Mon Sep 17 00:00:00 2001 From: foesa <35463247+foesa-yang@users.noreply.github.com> Date: Sat, 7 May 2022 15:22:31 +0800 Subject: [PATCH 2/4] Update st-ug-release-note.md --- docs-2.0/nebula-studio/about-studio/st-ug-release-note.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs-2.0/nebula-studio/about-studio/st-ug-release-note.md b/docs-2.0/nebula-studio/about-studio/st-ug-release-note.md index ae26b314102..3c18ffb6144 100644 --- a/docs-2.0/nebula-studio/about-studio/st-ug-release-note.md +++ b/docs-2.0/nebula-studio/about-studio/st-ug-release-note.md @@ -15,3 +15,8 @@ - Support favorite historical statements. - Support the display of historical statements results. - Add graph exploration to the console. + +## v3.3.1(2022.05.07) + +- Fix + - Fix the problem that the import log is occasionally empty. From f322fa8023c2767e927c596627299782ac4bece6 Mon Sep 17 00:00:00 2001 From: foesa <35463247+foesa-yang@users.noreply.github.com> Date: Sat, 7 May 2022 15:25:35 +0800 Subject: [PATCH 3/4] Update mkdocs.yml --- mkdocs.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 750a1861432..b7729686640 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -123,10 +123,7 @@ extra: branch: release-3.1 tag: v3.1.0 studio: - base111b: 1.1.1-beta - base220: 2.2.1 - base300: 3.0.0 - release: 3.3.0 + release: 3.3.1 tag: v3.3.0 explorer: release: 3.0.0 From fec462415bfc99eec51ecab3bfde8163f6128559 Mon Sep 17 00:00:00 2001 From: foesa <35463247+foesa-yang@users.noreply.github.com> Date: Sat, 7 May 2022 16:22:19 +0800 Subject: [PATCH 4/4] Update st-ug-deploy.md --- docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md b/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md index 1e5a54bc4d2..b43a1a31633 100644 --- a/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md +++ b/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md @@ -234,17 +234,17 @@ To deploy and start Docker-based Studio, run the following commands. Here we use | Installation package | Nebula Graph version | | ----- | ----- | - | [nebula-graph-studio-v{{studio.release}}.tar.gz](https://oss-cdn.nebula-graph.io/nebula-graph-studio/{{studio.release}}/nebula-graph-studio-v{{studio.release}}.tar.gz) | {{nebula.release}} | + | [nebula-graph-studio-{{studio.release}}.tar.gz](https://oss-cdn.nebula-graph.io/nebula-graph-studio/{{studio.release}}/nebula-graph-studio-{{studio.release}}.tar.gz) | {{nebula.release}} | -2. Create the `nebula-graph-studio-v{{studio.release}}` directory and decompress the installation package to the directory. +2. Create the `nebula-graph-studio-{{studio.release}}` directory and decompress the installation package to the directory. ```bash - $ mkdir nebula-graph-studio-v{{studio.release}} -zxvf nebula-graph-studio-v{{studio.release}}.gz -C nebula-graph-studio-v{{studio.release}} + $ mkdir nebula-graph-studio-{{studio.release}} -zxvf nebula-graph-studio-{{studio.release}}.gz -C nebula-graph-studio-{{studio.release}} ``` -3. Change to the `nebula-graph-studio-v{{studio.release}}` directory. +3. Change to the `nebula-graph-studio-{{studio.release}}` directory. ```bash - $ cd nebula-graph-studio-v{{studio.release}} + $ cd nebula-graph-studio-{{studio.release}} ``` 4. Pull the Docker image of Studio.