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
  • 978 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
  • 1199 Views
  • 1 replies
  • 1 kudos

Resolved! Cypher pattern start node is in list

Using the default movies graph I want to compute: MATCH p=(n:Movie {title: ["The Matrix Reloaded", "The Devil's Advocate"]})-[*]-() RETURN p LIMIT 25 However, I am not sure how to specify the title is in list operation. Potentially: apoc.coll.con...

Resolved! Distinct Union of attributes

Using the default movie graph I want to query for something along the lines of: MATCH (n:Movie) RETURN DISTINCT n.tagline UNION n.title LIMIT 25 ; I want to obtain a DISTINCT list of all the strings from the attributes tagline and title (not their c...

Replacement of RDBMS views in Neo4j

Hi Team, We are in process to upgrade our current inventory system (in oracle) to neo4j. We have successfully migrated data from RDBMS to Graph database. But we have one implementation problem in terms of interface with other systems. In some existin...

Deploy high availability Neo4j on Multi-AZ in AWS

Hello Experts, It’s my first time with the Neo4j db and I need to prepare a technical plan to deploy Neo4j db cluster on multi-AZ in AWS including the following: How much time I will need to deploy it.How I can perform a load/performance test for it ...

Neo4j cache file keeps growing while idle

Hello Everyone, I am having an isue with Neo4j in that if I just open the Neo4j desktop and let it sit idle, it just grows the cache / harddisk file and reaches 8-9 GB, just sitting idle doing nothing. And I mean with no database active. Does anyone ...

tideon by Graph Buddy
  • 643 Views
  • 2 replies
  • 0 kudos

Resolved! Optional match giving wrong result

This gives me wrong result, an unexpected behavior: MATCH (n) WHERE id(n) = 123 OPTIONAL MATCH (a:A) -- (n) WITH n, a, collect(a.actor) as actor OPTIONAL MATCH (a) -- (n) When I repeat the WHERE clause, it gives me the correct result: MATCH (n) WHER...

ri8ika by Graph Voyager
  • 1298 Views
  • 6 replies
  • 1 kudos

Neo4j record size of nodes

Hello! I would like to know what the exact size of a single node record in the 'nodestore.db' is. The book, Graph Databases by Ian Robinson, says a single node record has a fixed size of 9 bytes (1xinUse;4xRelation;4xPropertie) . However, various sou...

Session expired -> Websocket connected failure

When I'm dealing with large amount of data (< 20.000 nodes) I always get this error message: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use y...

janezic by Graph Voyager
  • 889 Views
  • 4 replies
  • 0 kudos

APOC.load.csv doesn't ignore empty line

I have a CSV file to read with empty lines at the end: ,,,,,, ,,,,,, I can only read from this csv and I can't copy it since it's the source and I'm not the one who create it, and it has to be automated without external software. Is there an 'ignore ...

Modeling University Club Membership

Hello, I'm in the process of turning the first thirty years of a university's yearbooks into a graph database, and I'm having some trouble modeling club membership and officer title/status over time. I would like to be able to query all the years a ...