I am using sdn rx beta04.
When I create an object like this:
@Node
class Something
{
@Id
@GeneratedValue
public Long id;
}
right now Id is not being generated when i save. Additionally i would expect that if using a long & GeneratedValue it ...
Hello, I upgraded a working project from 1.0.0-beta04 to 1.0.0-rc01.
Any idea why I'm getting this exception?
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'adCommands': Unsatisfied dependency express...
Are the depth fields going to be reintroduced to the Repository objects?
i.e. Repository.save( Ojbect object, int depth)
Or is there a newer, cooler way of facilitating this that I am not aware of?
A project that I am trying to port to SDN/RX made heavy use of inheritance fo certain objects and the previous version of Neo4j Spring Data happily turned all those classes into Labels.
Now If I try to create a relationship to an abstract class or in...
Hello!
Is there a way to do Database Selection via configuring the new SDN/RX spring driver? I cannot find a property to facilitate this.
Presently the only way I can to perform database selection is to build a SessionConfig and pass that to the Driv...
I think the larger issue is that in many cases when Neo4j has a problem with a Node object or a Repository it breaks without identifying the problem object.
I would love to provide an example, however, My issue is that I have about 40 Classes in my domain, but I don't know which one is causing the breakage.
I could supply you with my entire project but that is annoying for you to sift through it and the ...
it does look as if the code that is breaking should be checking for a null condition in getUnderlyingClass() if that is possible:
// parent class after child class
if (isValidParentNode(newEntity)) {
Class<?> thisParentClass = typeInformation...
BTW, I was wondering if there is a "best" practice for architecting the pattern I described above. Basically is there a way to reference an"Abstract" concept in neo4j.
In my particular example i have the concept of an Interval which has concrete i...