javeme commented on issue #2067: URL: https://github.com/apache/incubator-hugegraph/issues/2067#issuecomment-1373831588
Thanks for the feedback, the schemas are still missing, can you also paste the schema like this kind: https://hugegraph.apache.org/docs/clients/hugegraph-client/#232-create-vertexlabel In addition, I am not sure what's the meaning of as() in your statement. If it represents id, you can to use `property(T.id, 'xx')`: ```java g.addV('vl1').property('vp1','1743634682').property(T.id, '676136274964250624') ``` For the tinkerpop doc about gremlin as-step: https://tinkerpop.apache.org/docs/current/reference/#as-step . -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
