-
Notifications
You must be signed in to change notification settings - Fork 3k
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
refactor(dao/utils): Move general createRelationshipFilter from Neo4jUtil to QueryUtils #3010
refactor(dao/utils): Move general createRelationshipFilter from Neo4jUtil to QueryUtils #3010
Conversation
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.
Once CI passes, this LGTM. Thanks for the contribution Enrico!
3853d1a
to
d89d861
Compare
build.gradle
Outdated
@@ -1,6 +1,6 @@ | |||
buildscript { | |||
ext.junitJupiterVersion = '5.6.1' | |||
ext.gmaVersion = '0.2.80' | |||
ext.gmaVersion = '0.3.0' |
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.
after making the versioning change I suggested in datahub-gma, we'll want this to be more like 0.2.81
👍
d89d861
to
1ac3827
Compare
1ac3827
to
393fa96
Compare
393fa96
to
22bc5ba
Compare
@gabe-lyons this is ready to go |
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.
LGTM!
Methods that are not Neo4j-specific are moved out of Neo4Util in datahub-gma in linkedin/datahub-gma#121. This removes Neo4jUtil imports from classes that have no other reference to neo4j.
Besides moving these two methods into QueryUtils, this renames them to match existing methods in the target utils class.