-
Notifications
You must be signed in to change notification settings - Fork 96
Possible wrong comparsion method inside getEdgeDefinition method #22
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
Comments
@eugene-kamenev Thanks for spotting this, will fix. |
@eugene-kamenev I've uploaded a fixed version. Could you test it? Regarding the edge definition, you should be able to use it similar to the functions described here: https://docs.arangodb.com/General-Graphs/Management.html Is there a function missing? |
@fceller I am working with GraphEntity, I can create graph structure it is not a problem. But as I see there is no methods in GraphEntity to update/modify scheme, especially edit EdgeDefinitionEntity. From the doc you mentioned above, there is no GraphEntity.editEdgeDefinitions method. |
@eugene-kamenev will this method work for you? /**
|
@fceller No, as I tried, it will not upgrade anything. Just creates. |
@eugene-kamenev need to check with my colleague. |
@fceller thanks you BTW I am developing entity mapper in groovylang, similar that i created for orientdb https://github.com/eugene-kamenev/orientdb-groovy and I am experiencing many difficulties, where can I ask questions about arangodb-java-driver and blueprints tinkerpop implementation usage? |
@eugene-kamenev please feel free to contact hackers (at) arangodb.org |
Hello @eugene-kamenev you have to use the function
|
Just found that EdgeDefinitionsEntity.getEdgeDefinition(String collectionName) always returns null for me.
I think this is because of == string compare inside getEdgeDefinition method, it should be .equals there.
And also can you please help, how can I update edgeDefinition that already exists.
The text was updated successfully, but these errors were encountered: