Tutorial on WITH Clause

Hi All,
Any links other than Neo4j Documentation for WITH clause, is greatly appreciated.

Thanks,

Here's the entry for WITH in the Cypher docs.

It works similar to a RETURN, but allows you to continue working with the results. You can do aggregations and function calls in the WITH.

Also, it controls scope, in that only the variables you pass from the WITH clause are kept in scope, and all others drop out of scope.