Hi Finlay,
Please provided the label(s) for the node that you wish to match.
For example, MATCH (tom:Person {name: "Tom Hanks"}) RETURN tom;
Without the label, your query will match all types of nodes that have a name property of 'Tom Hanks' and wil...