RETURN

data from a query

The RETURN clause defines what to include in a query result set, specified as a comma separated list of expressions.

Reference: RETURN manual page
Related: :help MATCH :help WHERE :help Cypher
MATCH (director:Person)-[:DIRECTED]->(movie)
RETURN director.name AS Director, collect(movie.title) AS Movies
Return all directors, each paired with a collection of the movies they've directed.