Currently, We're working on OGM base implementation. We like to move on SDN 6 But I face problem to update relationship by neo4jRepository. I mention domain model.
@Node
public class Activity {
@Id
@GeneratedValue
protected Long graphId;
...
Currently, We're working on OGM base implementation. We like to move on SDN 6 But I face problem to update relationship by neo4jRepository. I mention domain model.
@Node
public class Activity {
@Id
@GeneratedValue
protected Long graph...
Hi All,
I have one model which shown as per Under.
@JsonInclude(Include.NON_NULL)
public class Actor extends AbstractGraphNodeEntity implements IResource {
@Index
protected String name;
@Relationship(type = "RESPONSIBLE_ACTOR", directi...
I used one interface that i defined @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) extends Neo4jRepository. Is It prototype scope good for Neo4jRepository ?
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)*/
public interface ActivityCustomFieldRepos...
Database contain PARENT_OF relationship, If I try to update current relationship by save method, SDN removed all sub graph node relationship as i mansion before.I only need to update a targeted node of relationship. When tried it by projection as we...
1) Have you checked the activity parent entity before the save ?Yes checked its contain child activity I used projection to save children.
public class ActivityDetails {
private Long graphId;
private Set<Activity> children;
public Lon...
` findByGuid` do not custom query. I try to fetch full `Activity`.
public interface ActivityReadRepository extends Neo4jRepository<Activity, Long>{
Activity findByGuid(String Guid)
}
I used about code for fetch parent and child Activity.I...