Hi,
We are using neo4j 2.0.3 and SDN (3.1.0).
We are getting this error when trying to execute this cypher with repository.
@Query("MATCH (n:Member)-[:MY_FB]->p WHERE
n.id = {0} RETURN p;")
->
org.neo4j.graphdb.NotFoundException: RELATIONSHIP[7141600] has no property with propertyKey="__type__".
If I look for this relationship id "7141600" This is a relationship of p -[r:INVITE]-x.
Our SDN save(repository.save()) hangs up quiet often so Invite relations were inserted using native java code like this.
private static final RelationshipType INVITED = DynamicRelationshipType
.withName("INVITED");
relationship = initiator.createRelationshipTo(recipient, INVITED);
Can someone please guide me to the fix. I don't know why is this _type_ required anyway. Earlier(prior upgrade 1.9.2) we used to have fully qualified class names as _type_ for NODEs, now I see just classname. Which is not consistent in itself.
Regards,
Mamta.