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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

How to count number of nodes for which a path exists?

I would like to count how many (User) nodes exists for a which there is a direct relationship with a (Keyword) node. If I do Match (u:User)-[]->(k:Keyword) Return Count(u) then the same user may be counted multiple times since it can have connections...

Rogie by Node Link
  • 2080 Views
  • 4 replies
  • 1 kudos

Finding Duplicate Relationships

I am trying to find all :DerivedValue nodes have more than one relationship to :SourceValue Nodes that come from the same Database. Is there an Apoc version or better way anyone can see to run this query? It takes several minutes to run, and also cre...

Similarity Problem

Hi, I have this db: and i whant to check the similarity between a x:person and the people that he follows. So i create a graph like this: CALL gds.graph.create.cypher( 'my-cypher-graph7', 'MATCH (n) where n:Person or n:Movie RETURN id(n) AS id', 'MA...

2X_c_c8a4eefddc480e32421895625c6d2962fc0e7896.png

Use neo4j with py2neo

When I use neo4j with py2neo, I get the following error: MaxRetryError: HTTPConnectionPool(host=' localhost', port=7474): Max retries exceeded with url: /db/data/transaction/commit (Caused by NewConnectionError('<urllib3.connection.HTTPConnection obj...

Graph with Time-Dimension and Dynamic labels

Hi guys, I am in desperate need of some help. I am trying to add data from a JSON file to model it as a graph. The difficulty I am having is that I have many dynamic labels for properties on nodes, I also need to create relationships depending on whe...

CSV loading, out of memory problem

hello, I'm trying to import data using this code: :auto USING PERIODIC COMMIT 500 LOAD CSV WITH HEADERS FROM "file:///followers.csv" AS followers MERGE (followed:User {twitter_id: followers.followed}) MERGE (follower:User {twitter_id: followers.follo...

jupiter by Node
  • 1226 Views
  • 3 replies
  • 0 kudos

Return only one of multiple relationships

Hi everybody, I am looking for a way to only get a single Relationship between two nodes for visualization in R using neo4r and visNetwork. Here´s a small example of my network: CREATE (SUP0001: Supplier {name: 'Answer Security', lat: 34.155834, long...

kkra by Node Link
  • 2487 Views
  • 5 replies
  • 0 kudos

PostgreSQL to NEO4j

Hello Everyone! thank you for your time and support. My data is coming from PostgreSQL and as of now I am importing CSV to NEO4j for a test. One question I have is what are the rules around properties for Relationships? Should we include Unique ident...

plee by Node Clone
  • 564 Views
  • 2 replies
  • 0 kudos

Resolved! Cypher query '_'

Hello everyone! on the Cypher query below, what does adding " '_' " do? as I go over the tutorials I see them often from solutions. Also, is it recommended to use that as we query? Please let me know! thanks in advance. MERGE (originAirportDay:Airpor...

plee by Node Clone
  • 311 Views
  • 1 replies
  • 0 kudos

Expose helm-installed Neo4Jj using ingress-nginx

Hi, I am working with the following setup: an AWS EKS Kubernetes cluster version 1.16helm version 3.2.1nginx-ingress helm chart version 1.39.1neo4j helm chart version 4.0.4-2 I am trying to deploy an exposed version of the Neo4j helm chart so that my...