The neo4j manual gives a good example for listing all property keys using the REST API:
:GET /db/data/propertykeys
Can this be achieved by using cypher only? maybe for one specific node as well?
Since Neo4j 2.2 there's the keys
function. Example:
MATCH (n:Person{name:'Ernesto'}) RETURN keys(n)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With