This is an automated email from the ASF dual-hosted git repository.
jin pushed a change to branch tmp-go
in repository
https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git
discard 3f71ec0c add apis
discard fe05caf2 add property apis
discard fdf36c9d add Gremlin post API
discard e3e7c185 Update README.md
discard 53311464 fix package name
add df4f0e7f fix package name
add 7888ca95 add Gremlin post API
add 0b454f58 add property apis
add cc1d465b add apis
add 55135349 add vertexlabel apis
add d58bc58e fix file header
add bb5a7038 set username & password
add f3e71a2a vertex API init
new 3cd6c78d Update README.md
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (3f71ec0c)
\
N -- N -- N refs/heads/tmp-go (3cd6c78d)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
hugegraph-client-go/api/v1/api._.go | 28 ++
hugegraph-client-go/api/v1/api.edgelabel.create.go | 143 +++++++++++
...y_name_test.go => api.edgelabel.create_test.go} | 25 +-
....get_all.go => api.edgelabel.delete_by_name.go} | 59 +++--
hugegraph-client-go/api/v1/api.gremlin.get_test.go | 18 --
.../api/v1/api.propertykey.create.go | 42 +--
.../api/v1/api.propertykey.delete_by_name.go | 29 +--
.../api/v1/api.propertykey.get_all.go | 2 +-
.../api/v1/api.propertykey.get_by_name.go | 2 +-
.../api/v1/api.propertykey.get_by_name_test.go | 5 +-
.../api/v1/api.propertykey.update_userdata.go | 2 +-
hugegraph-client-go/api/v1/api.schema.go | 2 +-
.../api/v1/api.vertexlabel.create.go | 137 ++++++++++
.../api/v1/api.vertexlabel.create_test.go | 94 +++++++
...y_name.go => api.vertexlabel.delete_by_name.go} | 37 ++-
...t.go => api.vertexlabel.delete_by_name_test.go} | 4 +-
...tykey.get_all.go => api.vertexlabel.get_all.go} | 54 ++--
...all_test.go => api.vertexlabel.get_all_test.go} | 6 +-
.../api/v1/api.vertexlabel.get_by_name.go | 117 +++++++++
...test.go => api.vertexlabel.get_by_name_test.go} | 8 +-
...rdata.go => api.vertexlabel.update_userdata.go} | 80 +++---
....go => api.vertexlabel.update_userdata_test.go} | 28 +-
hugegraph-client-go/api/v1/vertex/vertex.go | 286 +++++++++++++++++++++
hugegraph-client-go/api/v1/vertex/vertex_test.go | 95 +++++++
hugegraph-client-go/hugegraph.go | 4 +-
hugegraph-client-go/internal/model/model.go | 10 +-
26 files changed, 1121 insertions(+), 196 deletions(-)
create mode 100644 hugegraph-client-go/api/v1/api.edgelabel.create.go
copy hugegraph-client-go/api/v1/{api.propertykey.delete_by_name_test.go =>
api.edgelabel.create_test.go} (52%)
copy hugegraph-client-go/api/v1/{api.propertykey.get_all.go =>
api.edgelabel.delete_by_name.go} (51%)
create mode 100644 hugegraph-client-go/api/v1/api.vertexlabel.create.go
create mode 100644 hugegraph-client-go/api/v1/api.vertexlabel.create_test.go
copy hugegraph-client-go/api/v1/{api.propertykey.delete_by_name.go =>
api.vertexlabel.delete_by_name.go} (60%)
copy hugegraph-client-go/api/v1/{api.propertykey.delete_by_name_test.go =>
api.vertexlabel.delete_by_name_test.go} (88%)
copy hugegraph-client-go/api/v1/{api.propertykey.get_all.go =>
api.vertexlabel.get_all.go} (55%)
copy hugegraph-client-go/api/v1/{api.propertykey.get_all_test.go =>
api.vertexlabel.get_all_test.go} (87%)
create mode 100644 hugegraph-client-go/api/v1/api.vertexlabel.get_by_name.go
copy hugegraph-client-go/api/v1/{api.propertykey.get_all_test.go =>
api.vertexlabel.get_by_name_test.go} (84%)
copy hugegraph-client-go/api/v1/{api.propertykey.update_userdata.go =>
api.vertexlabel.update_userdata.go} (52%)
copy hugegraph-client-go/api/v1/{api.propertykey.update_userdata_test.go =>
api.vertexlabel.update_userdata_test.go} (69%)
create mode 100644 hugegraph-client-go/api/v1/vertex/vertex.go
create mode 100644 hugegraph-client-go/api/v1/vertex/vertex_test.go