-
Notifications
You must be signed in to change notification settings - Fork 10
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
Support newly added data types in Neo4j #94
Comments
@jameskleeh can you provide your feedback or if you need more information? |
Should be a matter of updating the https://github.com/grails/gorm-neo4j/blob/master/grails-datastore-gorm-neo4j/src/main/groovy/org/grails/datastore/gorm/neo4j/Neo4jMappingContext.java#L47 list to include the types and potentially adding converters However some of the types added require Java 8 so this cannot go into 6.1.x and must wait until 7.x which will be Java 8 only |
@amadfida It's possible we can support this through the |
@amadfida I cannot reproduce your claim that all the dates are stored as long. I have the following types in my domain (per the neo4j docs):
Saving an instance produces:
When I attempt to read the domain, those properties are null, however they look like they are stored correctly to me. Can you verify? |
@amadfida Native support for those types was not added until driver version 1.6. Here are things we can do:
I'm not sure we can do anything about the new spatial types in neo4j-gorm 6.1.x since I believe that requires driver support. Let me know your thoughts |
@jameskleeh we can target it for neo4j-gorm 6.2.0. |
@amadfida I've updated 6.2.0.BUILD-SNAPSHOT to use the latest driver. Can you test to see if it is working as expected? |
We would like to request some enhancements to neo4j-gorm to support new data types
More information can be found here : https://neo4j.com/docs/developer-manual/current/drivers/cypher-values/
Let me know if you have any questions.
Thanks
The text was updated successfully, but these errors were encountered: