SET r.role = null NOT neededRun in Sandbox// Find an actor that acted in a MovieMATCH (a:Actor)-[r:ACTED_IN]->(m:Movie)
// Create a Role nodeMERGE (x:Role {name: r.role})
// Create the PLAYED relationship// relationship between the Actor and the Ro...