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
  • 922 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
  • 1164 Views
  • 1 replies
  • 1 kudos

Storing potentially large nodes in Neo4j

Hello everyone, This is my first post on the Neo4j Community Forum so I apologize if it in any way violates the rules and standards of the forum. I will update my topic if any violation is pointed out. Currently, my team is considering using Neo4j fo...

CREATE DATABASE causes errors in neo4j-enterprise v4.4.6

When I run CREATE DATABASE ... for a db that has been recently dropped, I see multiple errors in debug.log (see below). I'm running neo4j-enterprise v4.4.6 on a reasonably well-provisioned AWS EC2 instance. UPDATE: I've searched my old versions of de...

tms by Graph Buddy
  • 1269 Views
  • 5 replies
  • 0 kudos

Resolved! Cypher query like a left join in SQL query

Hello everybody, how are you? Gus, I would like to create a cypher query similar to a left join in a SQL Query. I made the bellow query but the result is not what I want. After the query I will explain what is wrong for me. // Return data from a spec...

Resolved! ON MATCH and ON CREATE only creating 1 node

I have some Cypher code (test code) that uses APOC to load an Excel file and then process each row. What I want to do is this: call apoc.load.xls('Test File.xlsx', 'Company', // the file has a header row {header:true}) yield map as row with row MERG...

mbandor by Graph Voyager
  • 1017 Views
  • 8 replies
  • 3 kudos

Resolved! Finding Nodes that do not have a relationship

I don't know why this seems so difficult to figure out. I'm working with the following Nodes and relationships: I have this code: MATCH (n:Notification)-[cfn:CONTACT_FIRST_NAME]->(fn:Name)<-[hfn:HAS_FIRST_NAME]-(c:Contact), (n)-[cln:CONTACT_LAST_NAM...

3X_5_2_52e1b60260c00cc5a75523d8ee835d8aa4192961.png
gq16 by Node Clone
  • 1064 Views
  • 2 replies
  • 2 kudos

Neo4j memory issue

Hi, We are running data ingest in neo4j enterprise 4.4.5 with large data set. we have 3 cores and 1 read replica. Running AWS r6i.xlarge(32GB, quad core). Setting heapsize = 12GB for both initial and max. Pagecache size = 12GB. Memory allocated for ...

Natural sort algorithm

Hi everyone I have a lot of text nodes and I am traying to create an API that return the data sorted in natural order. The data looks like this: "Article 1", "Article 2", "Article 3",...,"Article 10",...,"Article 100" And With ORDER BY and apoc.coll....