Greetings,
Let's assume we have a node with a label called A
MATCH (a: A) RETURN a;
which returns one node with those properties:
{
prop1: "value1",
prop2: "value2",
prop3: "value3",
prop4: "value4"
}
The node can have n properties, but for the sake ...