cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

@UserFunction does not allow <Node>.setProperty in Desktop 3.4.1 Enterprise

irler
Node Link

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

1 REPLY 1

Functions only have read access for write access you have to use a @Procedure(mode=WRITE)