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

I can't send query cypher in server Neo4j

hello I tried to send query cypher to the neo4j database using PHP and I could not do it. what am I doing wrong? Here the error: Fatal error : Uncaught GuzzleHttp\Exception\ClientException: Client error: POST http://neo4j:***@localhost:7474/db/data/...

Resolved! How to bulk delete selected nodes from a list

What would be the best way to delete 1000+ or 100000+ selected nodes? Should I use UNWIND and MATCH to get a list of the nodes I want to delete then detach delete them. UNWIND $data as delete MATCH (c:Car) WHERE c.model = delete.model DETACH DELETE ...

NEO4j to AMAZON EC2? Please help!

Hello Community! Please Help! My name is Petra and I am new to NEO4j community and enjoying the learning. Thank you for the resources through out the community. It's really helpful. I've successfully loaded my test data as CSV to my GraphDB and conne...

plee by Node Clone
  • 448 Views
  • 1 replies
  • 1 kudos

Compute total share for all nodes in tree

I have the following data structure: (A:Company)-[OWNS]->(B:Company)-[OWNS]->(D:Company) (A:Company)-[OWNS]->(C:Company)-[OWNS]->(D:Company) Each [OWNS] relation has a property: share. So for example, A owns 100% of B and 100% of C, and B owns 45% o...

Error on receiving Json Data

Im trying to do a simple application with neo4j and nodejs, but I've just get stuck in this strange response. I'm inserting things on neo4j and it works, but when I try to use cypher to catch other node attributes i find this mistake: Result { ...

How to resolve "Node [ ...] not in use"?

I'm getting an error I've never seen before that I don't really know how to approach. Node[5250885,used=false,rel=-1,prop=-1,labels=Inline(0x0:[]),light,secondaryUnitId=-1] not in use I have a complicated, custom stored procedure that deletes several...

Totalize and hops

Hi, I'm using neo4j 3.5 community edition and trying totalize and get hops from a specific node. I'm running to totalize: MATCH (p:Person{id:123})-[r]->(m) RETURN p,count(distinct(r.idSale)) as qtd,sum(r.value) as value,type(r) as type,r.seg as segm...