I am using Memgraph Platform 2.6.4 and I want to call a subquery within a query. For example:
UNWIND [0, 1, 2] AS n
CALL {
RETURN 'hi' AS returnValue
}
RETURN returnValue
I couldn't find anything like that in Memgraph documentation, but saw it in Cypher best practices blog post. Is there a way to run subqueries in Memgraph?