我有一个与过滤机制实现相关的 Cypher Query 问题。
假设我们正在对PROFILE节点执行过滤器。为简单起见,过滤器有两种类型F1,F2。
每个过滤器都需要在查询中使用单独的MATCH子句。
我需要检索PROFILES where ( F1 or F2 ) = true 按日期排序。
所以一开始我想到了以下类似的东西:
START(node) match (Applying F1 filter)->profile WITH profile,node
match (Applying F2 filter)->profile2
但是现在我需要使用 order by .. 应用 return 子句
有没有办法从以前的比赛中汇总配置文件而不覆盖它们?就像是..
START(node) match (Applying F1 filter)->profile WITH profile,node
match (Applying F2 filter)->profile return profile order by profile.date
帮助将不胜感激
谢谢