I am new to Neo4j and have the following node structure in my graph
Name of the node : Test
{
"A": "1",
"B": "2",
"C": "3",
"D": "4",
"E": "5",
"F": "6",
}
My application requires the graph DB to return A, B and C as key-value pairs as-...
Joel:
MATCH (n:Test) return t.A, t.B, t.C
This would return only the value of the property. I would also want the name of the property returned in additional to it's value.