run this Cypher query twice to create clone of the Actor
CREATE (n:Actor { name:"Tom Hanks" });
Now i have this two nodes, when i ran this query
MATCH (actor:Actor) RETURN actor;
I got the resultset as
actor
(1:Actor {name:"Tom Hanks"})
(2:Actor {name:"Tom Hanks"})
Now how to delete only the 2nd node