Hi all,
I have the following Cypher query that runs well on Neo4j browser pointing to my local DB:
CALL apoc.meta.data() YIELD label, property, type, elementType
WHERE elementType <> 'relationship'
AND type <> 'RELATIONSHIP'
WITH label, collect(prope...