[[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"]
----
  N40 [
    label = "{Node\[40\]|name = \'you\'\l}"
  ]
  N41 [
    label = "{Node\[41\]|name = \'I\'\larray1 = \[1, 2, 3\]\larray2 = \[\'a\', \'b\', \'c\'\]\l}"
  ]
  N41 -> N40 [
    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(41) return n.array1, n.array2","params": {}},
----


_Example response_

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


