how to get a list of node properties with cypher in neo4j
In Neo4j version 3.0.0 you may do:
Match (n:Indicator) return properties(n), ID(n)
To return the ID and properties of nodes.
At the moment you can't do this using cypher but it is on the top five on the ideas board.