I created a vertex with a property called interests
and it should store an array of strings.
SELECT * FROM cypher('DatingApp', $$
CREATE (v:Person {
name: 'Alex',
age: 27,
occupation: 'Graphic Designer',
interests: []
})
RETURN v
$$) as (v agtype);
How can I add more strings to this property with another query?