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

Neo4j server slow startup time

After importing 17 million nodes and 85 million relationships into the Neo4j database (150gb), starting up and shutting down the Neo4j database is much slower. Start up now takes over 15 minutes as compared to 4 seconds prior to the data being impor...

Hi from US

Hi everyone! I'm a newbie. I've just started learning neo4j using desktop 1.2.5 I am a developer going to develop graph applications. I start with Cypher. Hope to have a chance to learn from each other in this community. Have a great week! E.

Rules for Size in Bloom

Hi, In playing with Bloom, I would like to set a rule to size the icon of node based on the number of connections it has and more specifically filtered by relationship type. For example when I inspect a node, and i look at at expand it might says "<...

Resolved! Cypher-Shell - how to run testquery.cypher in background

I have a simple question on cypher-shell as i didnt find much of documentation on this. What i am running is some command to load data from csv from cypher shell SNO,EmailId,FirstName,EmailId,LastName,HiringDate; 1,10001,Test1,abc@test1.com,"TestUse...

Kailash by Graph Buddy
  • 1255 Views
  • 2 replies
  • 0 kudos

Merge index?

Is there a way to only create an index if it doesn't already exist to avoid a potential error (when it already exists - or vis-versa)? I'm thinking of something like MERGE INDEX FOR (x:Label) ON (x.foo)

russ by Node Link
  • 787 Views
  • 1 replies
  • 1 kudos

Adjacency Matrix using Cypher Query

Hi, I am new to Neo4j and I am trying to extract the adjacency matrix of my graph. I found this cypher query (https://github.com/michelcaradec/Graph-Theory#adjacency-matrix) to get the adjacency matrix but it return the matrix without the row names a...

alex52 by Node
  • 2173 Views
  • 1 replies
  • 3 kudos

Complex Spatial Aggregation

I am struggling with a query... I hv a simple query. I use Neo4j 4.0 MATCH (s:Station)-[:LOCATED_AT]->(l:Location) WHERE distance(l.coord, point({ latitude: $latitude}, longitude: $longitude}})) < $distanceInMeter please ignore any syntactical mista...

Querying over values

How could it be possible to match over values of a certain node; For example: MATCH (f:Family)-[:IS_PROVIDED]-(p:Provider)-[:OFFERS]-(pr:Product)-[h:HAS]-(r:Rules) WITH f,p,r,h, pr, [x in keys(pr) WHERE toLower(x) CONTAINS toLower('aaa') OR x =~ '(?i...

Graph Algorithms Shortest path

Hi, I am new to the Neo4j community and have a question about the algo.allShortestPaths.stream algorithm. I have modelled a warehouse graph in neo4j, in which I have the following Node type: User. (with property 'id', ) Nodes are connected by the rel...