在我的Neo4j,SDN4項目,我有以下實體: Decision,Criterion,Vote 每一個決定都會對不同的標準進行表決。 現在,我使用以下Cypher查詢爲了排序決定平均。選擇的標準的投票權({criteriaIds}參數代表的CriterionSet<Long>的ID): MATCH (parentD)-[:CONTAINS]->(childD:Decision)
WHERE id
@NodeEntity
public class User {
private Long id,
private String email,
@Relationship(type = "hasOne", direction = Relationship.OUTGOING)
private Profile profile
}
@NodeEntity
我想了解如何正確使用主索引在SDN 4 從org.neo4j.ogm.annotation.Index的javadoc: Only one index per class hierarchy may be marked as primary.
這是否意味着,如果我有一個以下實體層次: B extends A
C extends A
我不能添加到兩個實體B和C下列索引定義: @Index(