While debugging some generated cypher queries from graphql, I realized that the all predicate may not be working as expected. Below is a much simpler query to demonstrate my point.
with [] as sample_list return all(b in sample_list where b) - this re...