You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is, that when I call myClassDescriptor.getConstructor() to retrieve the constructor field I get: org.neo4j.graphdb.NotFoundException: More than one relationship[DECLARES, OUTGOING] found for Node
The retrieval of the properties and methods fields work fine.
Full Stacktrace:
org.neo4j.graphdb.NotFoundException: More than one relationship[DECLARES, OUTGOING] found for Node[2532]
at org.neo4j.kernel.impl.core.NodeEntity.getSingleRelationship(NodeEntity.java:209)
at com.buschmais.xo.neo4j.embedded.impl.model.EmbeddedNode.getSingleRelationship(EmbeddedNode.java:62)
at com.buschmais.xo.neo4j.embedded.impl.datastore.EmbeddedRelationManager.getSingleRelation(EmbeddedRelationManager.java:76)
at com.buschmais.xo.neo4j.embedded.impl.datastore.EmbeddedRelationManager.getSingleRelation(EmbeddedRelationManager.java:20)
at com.buschmais.xo.impl.EntityPropertyManager.getEntityReference(EntityPropertyManager.java:60)
at com.buschmais.xo.impl.proxy.entity.property.EntityReferencePropertyGetMethod.invoke(EntityReferencePropertyGetMethod.java:16)
at com.buschmais.xo.impl.proxy.AbstractProxyMethodService.invoke(AbstractProxyMethodService.java:26)
at com.buschmais.xo.impl.proxy.InstanceInvocationHandler.invoke(InstanceInvocationHandler.java:27)
at com.sun.proxy.$Proxy103.getConstructor(Unknown Source)
The text was updated successfully, but these errors were encountered:
The graph has the following relations:
In code they are modeled as:
The problem is, that when I call
myClassDescriptor.getConstructor()
to retrieve theconstructor
field I get:org.neo4j.graphdb.NotFoundException: More than one relationship[DECLARES, OUTGOING] found for Node
The retrieval of the
properties
andmethods
fields work fine.Full Stacktrace:
The text was updated successfully, but these errors were encountered: