Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-16-2020 06:51 AM
Load example recipe data in nEuler:
USING PERIODIC COMMIT 1000
LOAD CSV WITH HEADERS FROM "https://github.com/neo4j-apps/neuler/raw/master/sample-data/recipes/recipes.csv"
AS row
MERGE (r:Recipe{name:row.recipe})
WITH r,row.ingredients as ingredients
UNWIND split(ingredients,',') as ingredient
MERGE (i:Ingredient{name:ingredient})
MERGE (r)-[:CONTAINS_INGREDIENT]->(i);
but PERIODIC COMMIT is not supported by Neo4j 4.2.1
Solution: LOAD CSV without PERIODIC COMMIT
12-20-2020 03:39 PM
Hmm where exactly does that error happen?
When you execute the code as a browser guide? Or from within Neuler?
Do you have a screenshot?
01-05-2021 05:52 AM
Yes:
The error is not visible in nEuler excplicitly but nEuler does not prodeed and waits forever.
01-05-2021 01:46 PM
Where exactly? In Desktop / Sandbox ?
If desktop, can you enable "Developer Mode", reload the app and click at the button "Developer Tools" and share the content of the JS console.
If in Browser for Sandbox, please hit F12 to see the JS console.
All the sessions of the conference are now available online