I am working with Neo4j, I have nodes that represent events that happen in the lives of users, such as birthdays, exams, etc., some of these events have an expiration date and others do not, I need to show the events that the date of expiration is greater than the current date or has no expiration date, that is, null
, as I understand in Neo4j you can not define Properties with value null
, in this case is a node that has no property, but then how can I build the query I need ?, that is, it would be something like this: match (e:Event) where e.dueAt<132456790 or e.dueAt=null return e
, but this query is incorrect.