I must start the development of a brand new application in the e-health sector.We will need to store millions of data regarding patient, analysis details, medical responses and so on.The data comes from medical devices, which are compliant with the r...
I've just downloaded and installed Neo4j-desktop `neo4j-desktop-1.4.15-x86_64.AppImage`. on a Ubuntu 22.04 machine.I just launched the installation and the product display the start page. I inserted the license.But when I try to create a new database...
Hi all,I have the following short query, which reads a 40.000 lines input files, but suddenly stops after the first line. LOAD CSV WITH HEADERS
FROM 'file:///Customers/data.csv" as row FIELDTERMINATOR ';'
WITH row, trim(row.`nome del produttor...
This is the solution if someone is interested:// Create an index on all
CALL db.labels() YIELD label
UNWIND label as lab
WITH
"CREATE INDEX index_created_at_" + lab + " IF NOT EXISTS FOR (n:" + lab + ") ON (n.CREATED_AT)" as v1,
"CREATE INDEX ind...
I tried with:CALL db.labels() YIELD label
UNWIND label as lab
call apoc.cypher.run("CREATE INDEX index_created_at_" + lab + " IF NOT EXISTS FOR (n:" + lab + ") on (n.'CREATED_AT')",{lab: lab}) YIELD value as v1but it returns an error:Neo.ClientErro...