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
  • 966 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
  • 1195 Views
  • 1 replies
  • 1 kudos

Neo4J on ami-03de3ac0f7ecf9ece cannot start

Hello, I set up my own AWS instance using the ami-03de3ac0f7ecf9ece AMI. It's a t2.micro in the eu-central-1 region. The machine starts and i can SSH into it. However, neo4j fails to start. The neo4j logs are empty, but checking /var/log/syslog shows...

Resolved! CLI commands fail on 4.0 enterprise AMI

I am building a casual cluster in AWS using the official Neo4j 4.0 enterprise AMI (ami-014f0e29bd8f8e168). After provisioning the EC2 instance I am unable to use the CLI tools. ubuntu@ip-10-0-0-11:~$ sudo neo4j --version Error: Could not find or load...

exide by Node
  • 1761 Views
  • 8 replies
  • 1 kudos

Node type of shortest path

Hi, Newbie here, please be gentle. Background mapping patents and node type include patent company (who is the patent assigned to) classification (how was the patent classified) There are actual 4 types of classification nodes group subgroup section ...

Resolved! Neo4j 4.0 Memrec

Looks like memrec in Neo4j 4.0 is behaving a bit erratically with an empty database: ./bin/neo4j-admin memrec # Memory settings recommendation from neo4j-admin memrec: # # Assuming the system is dedicated to running Neo4j and has 3.646GiB of memory, ...

Reload data from elastic using scrollid?

Hi @michael.hunger @Thomas_Silkjaer @alicia.frame1 I load data from Elasticsearch, using scrolled CREATE CONSTRAINT ON (cus:Customer) ASSERT cus.CIN IS UNIQUE CREATE CONSTRAINT ON (mer:Merchant) ASSERT mer.MerchantDetailsLocation IS UNIQUE​ CALL ap...

Predicate function understanding : exists()

Hello Team, Please guide me or help me to make it easier for me to understand the exists() function using below example. MATCH (a),(b) WHERE exists(a.name) AND NOT exists(b.name) OPTIONAL MATCH (c:DoesNotExist) RETURN a.name AS a_name, b.name AS b_na...

2X_2_253c6c782485a06cc44dd809502eca1ec0dc6ab8.png

Resolved! Filter by count of nodes related

I have one label called Person and another one called Dirs. They structure is as follows: Person: Name;Direction; Alfred;Milan; Maria;London; Albert;Paris; Marcos;Milan; Pablo;Madrid; Thomas;London; (etc etc) And the table Dirs contains just the uniq...

Resolved! Load csv without duplicates

I have been looking all over the community a post that could solve me this probelm. I have one table that contains personal information as follows: Name;age;direction; Marc,22;London; Mike;33;Paris; Adam;45;Madrid; Laure;34;Londo (etc etc) LOAD CSV W...

How to find graph centre of Subgraph

Hello I am working on a huge graph over 1 billion nodes. I have created a subgraph after performing some filters where I am keeping 2 hop distance from particular node . I need to find out the centre node or list of centre nodes using cypher. can yo...