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.

jayxu688
Node Link
since ‎07-17-2020
‎06-01-2022

User Statistics

  • 22 Posts
  • 0 Solutions
  • 1 Kudos given
  • 1 Kudos received

User Activity

MATCH (a:Artifact{gav:'org.slf4j:slf4j-api:1.7.21'}) WITH id(a) AS startNode CALL gds.alpha.dfs.stream('myGraph1', {startNode: startNode}) YIELD path UNWIND [ n in nodes(path) | n.gav ] AS tags RETURN tags ORDER BY tags I run this cypher on my local...
Hi, I am new user of neo4j. I am using neo4j 3.5 now. My first question is how to show the query plan like this, which can show the performance data clearer. Compiler CYPHER 4.1 Planner COST Runtime INTERPRETED Runtime version 4.1 +-------------...
I want to use GDS on my graph, and I already installed the library. The graph is like this. MATCH (a:Artifact{gav:'org.slf4j:slf4j-api:1.6.1'}) WITH id(a) AS startNode CALL gds.alpha.dfs.stream('myGraph', {startNode: startNode}) YIELD path UNWIND [...
I am using Spring boot to build an app with neo4j. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-neo4j</artifactId> </dependency> application.properties server.port=8080 spring.data.neo4j.e...
In a graph, there are multiple relationships between nodes with the same label to connect them together. What I want to do is to find all the paths to a specific node(e.g. node A), and only through a specific type of relationships. The graph is shown...
Kudos from
Kudos given to