Hello everyone,
for a cypher statement that I am coding I would love to know whether there is a cypher functionality like in javascript's [ key ] : value.
I am querying an object which is build as followed:
{
"Id": "Floor",
"IdType": "string",
"Value": "",
"Unit": "none",
}
And I would like to have a result which is built with the node's property "Id" as key and the node's property "Value" as value:
{
//Id : Value
"Floor": "XYZ"
}