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...
Hi Michael,thank you for your reply!The docs at https://github.com/neo4j-graphql/neo4j-graphql-java didn not make it clear to me that it is possible to use a rich relationship plus "@relation".Just to clarify for anyone looking for the answer to my o...
Hello Michael,
we have just launched a new major version: neo4j Commander 3
the graph app is now published at neo4jcommander3 - npm
Would you be so kind and change the Graph Apps Gallery for us. Thank you!
Find out everything here: https://neo4jcomma...
Hi @peter_haiduk
I know it's over 1 year later but I just wanted to THANK YOU for your reply!
In the meantime I have been working on optimizing some queries in our production systems and I just wanted to let you know that your solution works and also...