neo4j-devtools / neo4j-bloom

A public repository for informal docs, problem reporting and content sharing related to Neo4j Bloom.
Apache License 2.0
18 stars 0 forks source link

Unable to create nodes/relationships or edit properties through Bloom in Neo4j #43

Closed rohinibaraskar closed 2 years ago

rohinibaraskar commented 2 years ago

It seems only Read access is provided through Bloom thats why we are unable to edit any properties or add any node or relationships dynamically. For example I am trying to create relationship using apoc.create.vrelationship() but it gives access issue in bloom.

GlacialBoy commented 2 years ago

Hello @rohinibaraskar which kind of deployment are you using ( https://neo4j.com/docs/bloom-user-guide/current/bloom-installation/bloom-deployment-modes/ ) ? Bloom access depends on the user credential you provide him when you login, if using Bloom in Neo4j Desktop then you enter as an admin, if using it in Neo4j Aura it depends on the user you choose. Notice that for using apoc.create.vrelationship() you need to install APOC and that function is creating a virtual relationship, a relationship that doesn't exist in the db ( https://neo4j.com/labs/apoc/4.3/overview/apoc.create/apoc.create.vRelationship/ )

rohinibaraskar commented 2 years ago

Thanks now we are able to create vrelationship