Hi,
For some reason when I execute a Cypher query containing character '{' I get an error.
Here is an example of a query I found in the official documentation (link
UNWIND [0, 1, 2] AS x
CALL {
WITH x
RETURN max(x) AS xMax
}
RETURN x, xMax
Whic...
Thank you for the fast reply.
I am simply trying some queries to train myself for the moment. I found the query in neo4j documentation (there), and I was curious to know what I was doing wrong.
How should one use call with an inline procedure?