我需要创建A类的新节点,该节点与User节点有关系:
@NodeEntity
public class A implements Serializable {
/**
* Graph node identifier
*/
@GraphId
private Long nodeId;
/**
* Enity identifier
*/
private String id;
//... more properties ...
@Relationship(type = "HAS_ADVERTISER", direction = Relationship.OUTGOING)
private User user;
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof IdentifiableEntity)) return false;
IdentifiableEntity entity = (IdentifiableEntity) o;
if (!super.equals(o)) return false;
if (id != null) {
if (!id.equals(entity.id)) return false;
} else {
if (entity.id != null) return false;
}
return true;
}
}
@NodeEntity
public class User implements Serializable {
/**
* Graph node identifier
*/
@GraphId
private Long nodeId;
/**
* Enity identifier
*/
private String id;
//... more properties ...
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof IdentifiableEntity)) return false;
IdentifiableEntity entity = (IdentifiableEntity) o;
if (!super.equals(o)) return false;
if (id != null) {
if (!id.equals(entity.id)) return false;
} else {
if (entity.id != null) return false;
}
return true;
}
}
现在,我们假设我们有新节点A的以下数据:
{
"id": 1,
"nodeId": "0001-0001",
"user": {
"id": 4,
"nodeId": "0002-0002",
"name": null,
"firstName": null
}
}
我正在尝试使用新节点A和具有“id”的用户(已存在的)节点之间的关系创建节点A:4和“nodeId”:“0002-0002”(唯一)节点标识符),但不是这样,用户节点将字段“name”和“firstName”更新为null
。
我正在使用GraphRepository代理创建它:
@Repository
public interface ARepository extends GraphRepository<A> {
}
如果没有此更新,有没有办法做到这一点,只与这个用户节点建立关系?
答案 0 :(得分:1)
不,您必须通过id重新加载实体以填充所有缺失值,然后保存或编写自定义查询。
答案 1 :(得分:0)
您可以使用MERGE
执行此操作。请参阅Cypher RefCard
@Repository
public interface ARepository extends GraphRepository<A> {
@Query("MERGE (a:A {id:aId}})-[:HAS_ADVERTISER]-(u:User {id:{userId}})" +
"RETURN a")
public A createAndGetAd(@Param("aId") String aId,
@Param("userId") String userId)
}