-
Notifications
You must be signed in to change notification settings - Fork 11
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
Cherry pick cypher support #463
Cherry pick cypher support #463
Conversation
implement apache#1748 Co-authored-by: jadepeng <jqpeng@iflytek.com>
Codecov Report
@@ Coverage Diff @@
## gh-dis-release #463 +/- ##
====================================================
- Coverage 35.31% 35.29% -0.02%
Complexity 4345 4345
====================================================
Files 445 447 +2
Lines 38518 38549 +31
Branches 5303 5305 +2
====================================================
+ Hits 13602 13606 +4
- Misses 23262 23288 +26
- Partials 1654 1655 +1
Continue to review full report at Codecov.
|
* version 0.13: | ||
* [0.67] Issue-11: hugegraph with etcd/pd, | ||
* add graphspace, remove auth server | ||
* [0.68] Issue-1763: Support adamic-adar & resource-allocation API | ||
* [0.68] Issue-1763: Support adamic-adar & resource-allocation API |
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.
delete duplicated line
@PathParam("graphspace") String graphspace, | ||
@PathParam("graph") String graph, | ||
@QueryParam("cypher") String cypher | ||
) { |
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.
move to line 37
return transformResponseIfNeeded(response); | ||
} | ||
|
||
private String translateCpyher2Gremlin(String cypher) { |
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.
typo "cypher"
@@ -0,0 +1,88 @@ | |||
/* |
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 CypherApiTest into ApiTestSuite to run tests
4a95597
to
5e5a811
Compare
cherry pick cypherapi, and make small changes to support query under different graphspaces.