Cypher : MATCH (n:NOT_EXISTING_LABEL) return COUNT(n) should not error and just return 0 (original) (raw)
MATCH (n:NOT_EXISTING_LABEL) return COUNT(n) should not error and just return 0
With neo4j and old cypher engine you can query nodes + count that doesn't exists and it just returns ... nothing
With new engine it just errors:
MATCH (n:NOT_EXISTING_LABEL) return nworksMATCH (n:NOT_EXISTING_LABEL) return COUNT(n)errors