function labels(node)

Returns a list of string representations for the labels attached to a node.

Arguments:
node: Any expression that returns a single node

Example Query:
    MATCH (a)
    WHERE a.name='Alice'
    RETURN labels(a)