Hi, when using the following simple cypher query with the apoc function 
apoc.create.uuid()     

USING PERIODIC COMMIT
LOAD CSV WITH HEADERS
FROM "file:///test.csv" AS line FIELDTERMINATOR ';'
MERGE (server:Server { name: line.`Machine Name`, uuid: call 
apoc.create.uuid() })

I keep getting an error message like

Invalid input 'p': expected 'n/N' (line 4, column 63 (offset: 158))
"MERGE (server:Server { name: line.`Machine Name`, uuid: call 
apoc.create.uuid() })"


I am running latest version of desktop, all procedures and functions are 
active and show in the browser (when running the list procedutes / 
functions command) and without the   -- uuid: call apoc.create.uuid() --   
part the query works fine

Do i have to do / configure something so that i can use apoc functions in 
queries ? Or is the query syntax not ok ?

Thanks Koen



-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to