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
from fdf36c9d add Gremlin post API
new fe05caf2 add property apis
new 3f71ec0c add apis
The 2 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/api.resquest.go | 11 +-
hugegraph-client-go/api/v1/api._.go | 25 ++++
hugegraph-client-go/api/v1/api.gremlin.get.go | 120 ++++++++++++++++
...retx.create_test.go => api.gremlin.get_test.go} | 40 +++---
hugegraph-client-go/api/v1/api.gremlin.post.go | 26 +++-
.../api/v1/api.gremlin.post_test.go | 17 +++
.../api/v1/api.propertykey.create.go | 126 +++++++++++++++++
...eate_test.go => api.propertykey.create_test.go} | 45 +++---
.../api/v1/api.propertykey.delete_by_name.go | 105 ++++++++++++++
.../api/v1/api.propertykey.delete_by_name_test.go | 12 +-
.../api/v1/api.propertykey.get_all.go | 101 ++++++++++++++
...ate_test.go => api.propertykey.get_all_test.go} | 25 +---
.../api/v1/api.propertykey.get_by_name.go | 117 ++++++++++++++++
...test.go => api.propertykey.get_by_name_test.go} | 25 +---
.../api/v1/api.propertykey.update_userdata.go | 144 ++++++++++++++++++++
....go => api.propertykey.update_userdata_test.go} | 40 +++---
hugegraph-client-go/api/v1/api.schema.go | 151 +++++++++++++++++++++
...pi.veretx.create_test.go => api.schema_test.go} | 23 +---
hugegraph-client-go/api/v1/api.veretx.create.go | 3 +-
hugegraph-client-go/api/v1/api.version.go | 2 +-
hugegraph-client-go/api/v1/api.version_test.go | 56 +-------
hugegraph-client-go/internal/model/model.go | 10 ++
22 files changed, 1045 insertions(+), 179 deletions(-)
create mode 100644 hugegraph-client-go/api/v1/api.gremlin.get.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.gremlin.get_test.go} (65%)
create mode 100644 hugegraph-client-go/api/v1/api.propertykey.create.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.propertykey.create_test.go} (53%)
create mode 100644 hugegraph-client-go/api/v1/api.propertykey.delete_by_name.go
copy
hugegraph-hubble/hubble-be/src/main/java/org/apache/hugegraph/entity/schema/Timefiable.java
=> hugegraph-client-go/api/v1/api.propertykey.delete_by_name_test.go (84%)
create mode 100644 hugegraph-client-go/api/v1/api.propertykey.get_all.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.propertykey.get_all_test.go} (69%)
create mode 100644 hugegraph-client-go/api/v1/api.propertykey.get_by_name.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.propertykey.get_by_name_test.go} (68%)
create mode 100644
hugegraph-client-go/api/v1/api.propertykey.update_userdata.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.propertykey.update_userdata_test.go} (58%)
create mode 100644 hugegraph-client-go/api/v1/api.schema.go
copy hugegraph-client-go/api/v1/{api.veretx.create_test.go =>
api.schema_test.go} (70%)