We've already talked about the simple query here, which selects all nodes inside the database:
MATCH (n)
RETURN n
Be careful, if your database is large, this query is likely to make your browser or application crash. It is better to do what you would do with SQL, and add a LIMIT statement:
MATCH (n)
RETURN n
LIMIT 10
MATCH (n)
RETURN n
LIMIT 10
Let's try to be more specific in the data we want to select (filter) and the properties we need in the RETURN statement.