Hi Neo4j Community,
I hope this message finds you well. I'm currently working on creation of virtual path like the example below:
</>
MATCH (a)-[r]->(b)
where a.name="Derek Jaun"
WITH head(labels(a)) AS labelA, head(labels(b)) AS labelB, type(r) AS rel_type, a.name AS aName, b.name AS bName
call apoc.create.virtualPath([labelA],{name: aName},rel_type,{since:2009},[labelB],{name: bName}) yield from, rel, to
RETURN *;
</>
I'm receiving this error:
Neo.ClientError.Procedure.ProcedureNotFound
There is no procedure with the name
apoc.create.virtualPath registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
- neo4j version : Neo4j AuraDb
Thank you in advance for your time and assistance.
Best regards,