Using a db of users borrowing books from a library i want to create with 1 query 2 lendings that have the same date.
MATCH (u:User), (b:Book)
WHERE u.Name = 'Al' AND u.Surname = 'Pacino' AND (b.title = 'The Hours' OR
b.title = 'War and Peace')
CREATE (u)-[:LEND {date:['16 March 2017']}]->(b)
I thought that would be doing what I wanted, but only 'The Hours' is created. What am I missing here?