Questions tagged [spring-data-neo4]
3 questions
2
votes
0 answers
SDN5: Found more than one matching @RelationshipEntity for (14762)-[CONTAINS]->(14781) but cannot tell which one to use
I have created two different Spring Data Neo4j 5 @RelationshipEntity with the same type:
@RelationshipEntity(type = "CONTAINS")
public class CharacteristicRelationship {
@Id
@GeneratedValue
private Long id;
@StartNode
private…

alexanoid
- 24,051
- 54
- 210
- 410
1
vote
1 answer
Can Hibernate Search be configured for NodeEntiny?
I am trying to build hibernate full text search for a nodeEntity. It gives:
Can't build query for type x.y.z.Object which is neither configured
nor has any configured sub-types
My class is like below. I am using Neo4j…

Abdullah Al Noman
- 2,817
- 4
- 20
- 35
0
votes
1 answer
Relation is not returning while defining self-referential nodes in SDN (Spring Data Neo4J)
We are generating 48 hour projection data using 6 months historical network traffic data. The final projection data is loaded into Neo4J to support a front end web application where users can search a server and see its future communication/data…

Raj
- 1