cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

chris3
Graph Buddy
since ‎06-24-2019
‎06-10-2022

User Statistics

  • 65 Posts
  • 0 Solutions
  • 13 Kudos given
  • 28 Kudos received

User Activity

Using neo4j-graphql-java (1.5.0): I have a hierarchical tree of users and "SPONSOR" relationships to form that tree. Each User has a single sponsor (outgoing to 1 User) and a "firstline" (multiple Users - incoming) This is an excerpt of the schema: t...
I am thinking about giving SDN a go again, trying out Interface-based Projections: interface UserSDNRepository : ReactiveNeo4jRepository<UserSDN, Long> { fun findAllUsernames(): Flux<UsernameOnly> } interface UsernameOnly { val username: String? ...
I deleted several DBMS directories on the file system. They still show up in neo4j Desktop with an orange warning icon - and that is actually a cool feature for DBMS installs on removable media! BUT in my case I really want to delete those entries .....
Using SDN 6 I have classes like abstract base class with auditing: public abstract class Node { @Id @GeneratedValue @Getter private Long id; @Version @Getter private Long version; @CreatedDate @Getter private LocalDateTime created; @CreatedB...
Hello @gerrit.meier I can't find anything in the SDN docs about indexing ... No more @Index and autoIndex(AutoIndexMode.UPDATE)? Cheers, Chris