This documentation is REALLY helpful for learning Cypher:
Examples:
Display all the properties of a User object:
MATCH (u:User) return properties(u) LIMIT 1
Display all the properties of a Computer object:
MATCH (c:Computer) return properties(c) LIMIT 1