-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let vertex and edge adapt simple json properties #37
Conversation
5cff071
to
2e8c2e8
Compare
bc69094
to
6412011
Compare
@@ -96,7 +96,7 @@ private void initManagers(RestClient client, String graph) { | |||
private void checkServerApiVersion() { | |||
VersionUtil.Version apiVersion = VersionUtil.Version.of( | |||
this.version.getApiVersion()); | |||
VersionUtil.check(apiVersion, "0.32", "0.33", | |||
VersionUtil.check(apiVersion, "0.34", "0.35", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why skip api version 0.33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.33 is customized path api
@@ -17,7 +17,7 @@ | |||
|
|||
private final ObjectMapper mapper; | |||
|
|||
public VertexDeserializer() { | |||
private VertexDeserializer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add some comments
c032c0f
to
363df59
Compare
Implement #36 Change-Id: I500976931c50fbab384dbd71dbd839aa69dc42d3
363df59
to
b652ff5
Compare
Codecov Report
@@ Coverage Diff @@
## master #37 +/- ##
=========================================
Coverage ? 72.47%
Complexity ? 459
=========================================
Files ? 90
Lines ? 2016
Branches ? 115
=========================================
Hits ? 1461
Misses ? 469
Partials ? 86
Continue to review full report at Codecov.
|
+ "\"city\": \"Shanghai\"," | ||
+ "\"name\": \"peter\"," | ||
+ "\"age\": 29" | ||
+ "}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add test for list/set property
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now list/set property will be parsed into a list
a6c7284
to
dfed778
Compare
Change-Id: I3decf4857478a9a6e5d3e0a87a931a8136ca8469
dfed778
to
362609e
Compare
Let vertex and edge adapt simple json properties Implement hugegraph#36 Change-Id: I500976931c50fbab384dbd71dbd839aa69dc42d3
Implement #36
Change-Id: I500976931c50fbab384dbd71dbd839aa69dc42d3