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
  • 943 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
  • 1183 Views
  • 1 replies
  • 1 kudos

Resolved! PATCH Request with apoc.load.jsonParams

Hi Everyone I was wondering if it is possible to execute a POST request to an API using apoc.load.jsonParams? It wold come in handy to update a lot of tuples in another database. I tried the following without success: CALL apoc.load.jsonParams($URL+"...

bieri by Node Link
  • 964 Views
  • 1 replies
  • 1 kudos

Resolved! Merge query

Hi all, I would like to know where I am going wrong with this query, //Import of senate armed staff Load CSV with headers from 'file:///Senate%20Armed%20Services%20Staff.csv' as line with line FOREACH (ignoreME IN CASE WHEN line.`Employer` IS NOT NU...

skirwan by Node Link
  • 776 Views
  • 2 replies
  • 0 kudos

Resolved! APOC trigger for updating node property

Hi, I added trigger: CALL apoc.trigger.add('updateprop','UNWIND {assignedNodeProperties} AS prop with prop.node as n SET n.tsupd = timestamp()', {phase:'before'}); then I did some changes But trigger does nothing Is it ok ? I wanted to add/update p...

Resolved! Using Nested `LOAD CSV` with `apoc.periodic.iterate`

I am suing LOAD CSV and apoc.periodic.iterate to import data. I have one .csv that contains the folder and file names that contain the data to be imported. Below is the code I currently have: CALL apoc.periodic.iterate(" LOAD CSV WITH HEADERS FROM 'f...

Resolved! Default ordering of nodes and relationships

One for the engineering team! I have noticed that when using a NodeByLabelScan - even with a filter - the nodes are always returned by default in strict ascending id order, and with no gaps - that is I don't need to sort by id to get a sorted list of...

vince by Node
  • 6923 Views
  • 7 replies
  • 2 kudos

A game: How to model the Soma Cube

I have challenged myself to build a Neo4j solver for the Soma Cube, and share it with the community. en.wikipedia.org Soma cube The Soma cube is a solid dissection puzzle invented by Piet Hein in 1933 during a lecture on quantu...

neo4joe by Node Clone
  • 972 Views
  • 1 replies
  • 0 kudos

Recommended Transaction Timeouts

Using neo4j 3.4.3 we're seeing some transaction timeouts using SDN for some bulk saving and we're curious if modifying the timeouts would help. Currently we have this configuration deployed everywhere: dbms.lock.acquisition.timeout=30s dbms.transacti...

Resolved! APOC triggers to automatically add properties

Hello, I am using an apoc trigger to automatically add a property to all newly created nodes. call apoc.trigger.add('add_property', "unwind {createdNodes} as node match(node) set node.auto = 'property'", { phase: 'before' }) When I execute the follow...