i have created a new node labeled User
CREATE (n:User)
i want to add a name property to my User node i tried it by
MATCH (n { label: 'User' })
SET n.surname = 'Taylor'
RETURN n
but seems it is not affecting .
how can i add properties to a already created node .
Thank you very much.