I am trying to run a query that conditionally creates a virtual relationship upon an optional match.
A simplified version of the query is as follows:
MATCH (v:Venue)
OPTIONAL MATCH (v)-[:HOSTS_EVENT]->(e:Event)-[:IN_SERIES]->(s:Series)
WITH v, s
CALL...