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.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 920 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1163 Views
  • 1 replies
  • 1 kudos

apoc.merge.node vs apoc.merge.node.eager

The docs for these two procedures are exactly the same except for the word "eager". What does "eager" mean in this context? How do these two procedures operate differently? When would I want to use one or the other?

graphene by Node Clone
  • 167 Views
  • 0 replies
  • 0 kudos

Getting relationship properties of shortest path

Hi, I'm running Dijkstra's algorithm to find the shortest path between two nodes MATCH (source:Node {{nodeId: 123 }}), (target:Node {{nodeId: 456 }}) CALL gds.shortestPath.dijkstra.stream('undirectedGraph', {{ sourceNode: source, ...

GregH by Node
  • 387 Views
  • 3 replies
  • 0 kudos

Debug cypher query

Is there a way to proper debug a cypher query? I've been busting my head over an integer value vs string property which I could not detect as it just did not give any error, not even a hint. And also the query was embedded in apoc.do.case, hence, no ...

Most effecient way to load up millions of nodes?

Hi people, I am pretty new to Neo4j and using it for doing analytics on crypto transaction data. There's millions of nodes and even more transactions to be transfered over to the graph. What is the most effecient way to do that? What I am doing right...

Symlinks for default file locations?

Hello! Can I use symlinks for directory located in another partition that points to the default file locations of my Neo4j installation? It is because I want to locate most of my Neo4j installation in a partition with more storage. I am deploying neo...

no changes no records

MATCH (u:User)-[:POSTS]->(t:Tweet)-[r:POLARITY]->(v:Negative) WHERE toFloat(r.confidence) > 0.5 RETURN u.username,COUNT(t.tweet_id) AS TOTAL_COUNT ORDER BY TOTAL_COUNT DESC; kindly help

fundun by Node
  • 233 Views
  • 1 replies
  • 0 kudos

Resolved! Combine relationships and pass parameters

How can I query multiple relationships and pass filter for just one of them? eg: match (u:User)-[:PURCHASED|r:RATED {r.value > 3.5}]->(i:Item) return i I wanna query all the items a user has interacted and only include those which the user rated ab...

iamtheef by Node Link
  • 668 Views
  • 5 replies
  • 2 kudos

Optimize query with 2 depth

I have a graph of more than 1 M nodes, and try to find the nodes at two depth with multiple relation. Always hit out of heap space error when trying to run. Is there anyway to optmize the query? MATCH (a:person)-[r1:relation]->(b:customer)-[r2:relati...

ff by Node
  • 160 Views
  • 0 replies
  • 0 kudos

Create clusters using node embeddings + K-means

I applied FastRP to create node embeddings for a graph consisting of 6,301 nodes. These embeddings are stored as node properties to be used in clustering using the K-means algorithm. I noticed that although the nodes are nearby to each other, they ar...