Extending Neo4j in Java (@UserFunction...) does not allow adding properties.
...
node.setProperty("value",Double.toString(num));
....
error message:
org.neo4j.graphdb.security.AuthorizationViolationException: Token create operations are not allowed for user 'neo4j' with roles [admin] restricted to READ
read-access works perfectly
How can I change my role or add WRITE permission?
Thanks