You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hugegraph.apache.org by "zhenyuT (via GitHub)" <gi...@apache.org> on 2023/05/14 13:50:42 UTC

[GitHub] [incubator-hugegraph-doc] zhenyuT opened a new pull request, #225: Branch fix client

zhenyuT opened a new pull request, #225:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/225

   将示例代码中的baidu包替换成apache


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-doc] imbajin commented on a diff in pull request #225: Branch fix client

Posted by "imbajin (via GitHub)" <gi...@apache.org>.
imbajin commented on code in PR #225:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/225#discussion_r1193159088


##########
content/en/docs/quickstart/hugegraph-client.md:
##########
@@ -338,6 +338,7 @@ public class BatchExample {
 }
 ```
 
+

Review Comment:
   seems extra line? (Update: already removed it)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org
For additional commands, e-mail: issues-help@hugegraph.apache.org


[GitHub] [incubator-hugegraph-doc] imbajin merged pull request #225: Branch fix client

Posted by "imbajin (via GitHub)" <gi...@apache.org>.
imbajin merged PR #225:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/225


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-doc] imbajin commented on a diff in pull request #225: Branch fix client

Posted by "imbajin (via GitHub)" <gi...@apache.org>.
imbajin commented on code in PR #225:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/225#discussion_r1193159088


##########
content/en/docs/quickstart/hugegraph-client.md:
##########
@@ -338,6 +338,7 @@ public class BatchExample {
 }
 ```
 
+

Review Comment:
   seems extra line? (Update: removed it)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org
For additional commands, e-mail: issues-help@hugegraph.apache.org


[GitHub] [incubator-hugegraph-doc] imbajin commented on a diff in pull request #225: Branch fix client

Posted by "imbajin (via GitHub)" <gi...@apache.org>.
imbajin commented on code in PR #225:
URL: https://github.com/apache/incubator-hugegraph-doc/pull/225#discussion_r1193159088


##########
content/en/docs/quickstart/hugegraph-client.md:
##########
@@ -338,6 +338,7 @@ public class BatchExample {
 }
 ```
 
+

Review Comment:
   seems extra line?



##########
content/cn/docs/quickstart/hugegraph-client.md:
##########
@@ -152,17 +152,17 @@ public class SingleExample {
               .create();
 
         GraphManager graph = hugeClient.graph();
-        Vertex marko = graph.addVertex(T.label, "person", "name", "marko",
+        Vertex marko = graph.addVertex(T.LABEL, "person", "name", "marko",
                                        "age", 29, "city", "Beijing");
-        Vertex vadas = graph.addVertex(T.label, "person", "name", "vadas",
+        Vertex vadas = graph.addVertex(T.LABEL, "person", "name", "vadas",
                                        "age", 27, "city", "Hongkong");
-        Vertex lop = graph.addVertex(T.label, "software", "name", "lop",
+        Vertex lop = graph.addVertex(T.LABEL, "software", "name", "lop",
                                      "lang", "java", "price", 328);
-        Vertex josh = graph.addVertex(T.label, "person", "name", "josh",
+        Vertex josh = graph.addVertex(T.LABEL, "person", "name", "josh",
                                       "age", 32, "city", "Beijing");
-        Vertex ripple = graph.addVertex(T.label, "software", "name", "ripple",
+        Vertex ripple = graph.addVertex(T.LABEL, "software", "name", "ripple",
                                         "lang", "java", "price", 199);
-        Vertex peter = graph.addVertex(T.label, "person", "name", "peter",
+        Vertex peter = graph.addVertex(T.LABEL, "person", "name", "peter",

Review Comment:
   Good



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@hugegraph.apache.org
For additional commands, e-mail: issues-help@hugegraph.apache.org