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.

ukirik
Node
since ‎05-19-2020
‎06-01-2022

User Statistics

  • 18 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

If I have a query along the lines of MATCH (g:Gene)-[r]-() RETURN DISTINCT type(r), count(r) I can get a breakdown of the connections a gene node has, what type of relationships and how many of these. Say I have a list of genes with which I want to d...
I am trying to get the paths in a fine-grained manner. I have come up with the following query, with the idea to get the linkage between a person called Hampus and a place called Pizza Hut, via either some other people (that Hampus is connected to), ...
I am noticing some interesting differences in the Neo4J browser depending on the browser used. The graph in the backend is rather large several million nodes and over 50 million edges. So some queries tend to be rather large, especially if it's of th...
The idea is to check if a node is related to one of the many nodes under two different hierarchies, so imagine you are interested in finding diseases that ails both cats and dogs, but not other mammals like primates or rodents. It's a silly example I...
I am not sure if I am explaining this in a good way but imagine a query of type: MATCH (p:Person)-[r]-(m:Movie {title: "Awesomest Movie"}) WHERE type(r) <> "DIRECTED" RETURN p This will return people associated with a particular movie. So far so good...