匹配Neo4j Cypher中的投标关系

ind*_*pur 9 python neo4j cypher

我有以下域模型:

Author - creates posts and can reply to comments
Guest/Reader - can leave comments
Run Code Online (Sandbox Code Playgroud)

我想查找未回复特定用户评论的作者。

我尝试了以下查询,但不起作用。

MATCH (author:Author),(reader) WHERE NOT (author:Account)-[:REPLIED_TO_COMMENT]-[:LEFT_COMMENT]-(reader) RETURN DISTINCT author
Run Code Online (Sandbox Code Playgroud)

请帮助创建有效的查询。