[[rest-api-array-property]]
=== Array property ===



[source,cypher]
----
START n = node(%I%)
RETURN n.array1, n.array2
----


.Final Graph
["dot", "Final-Graph-array-property.svg", "neoviz"]
----
  N224 [
    label = "{Node\[224\]|name = \'you\'\l}"
  ]
  N225 [
    label = "{Node\[225\]|name = \'I\'\larray1 = \[1, 2, 3\]\larray2 = \[\'a\', \'b\', \'c\'\]\l}"
  ]
  N225 -> N224 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "know\n"
  ]
----

_Example request_

* *+POST+*  +http://localhost:7474/db/data/cypher+
* *+Accept:+* +application/json+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{"query": "start n = node(225) return n.array1, n.array2","params": {}},
----


_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "data" : [ [ [ 1, 2, 3 ], [ "a", "b", "c" ] ] ],
  "columns" : [ "n.array1", "n.array2" ]
}
----


