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.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 978 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1199 Views
  • 1 replies
  • 1 kudos

Granting Roles to Users

Hi I'm trying to grant a role to a new user on my database: The publisher role. But when I try this query: grant role publisher to ben, I get this error message: Neo.ClientError.Security.Forbidden Permission denied for ASSIGN ROLE. Try executing SHOW...

m_h98 by Node
  • 1217 Views
  • 4 replies
  • 1 kudos

Admin user for Neo4j Aura DB

I have started a Neo4j AuraDB instance (free tier). It created a user neo4j.I need to test and practice administering users and roles via .Net, but this user is not an administrator so it has no permissions to create or assign roles.How can I get an ...

Resolved! Unique Nodes loaded from CSV file

I have the following simple Cypher script:LOAD CSV WITH HEADERS FROM "file:///test.csv" AS row FIELDTERMINATOR ';'merge (n:Subject {code: row.NodeA})merge (m:Object {code: row.NodeB})merge (r:Relation {code: row.Relation})MERGE (n)-[:TO]->(r)merge (r...

Automate and record Neo4j loading time

Dear all,I am working on testing the DB loading time for different graph schemas and each need to run 30 times. I want to automate the database drop and creation and load from neo4j-admin process, but I'm not sure how to get the neo4j-admin running r...

Resolved! Stored procedure

I have a simple doubt. Can't we write stored procedure in cypher itself and use it like other SQL databases? Is using Java the only option we have?? 

suvi by Node Link
  • 768 Views
  • 2 replies
  • 1 kudos

Performance issue while doing a LOAD CSV

Hi everyone, how are you doing?Guys, I would like a little help. Actually I am doing a study to my company to verify the possibility to use Neo4j as our first NoSql data base.Firstly I created a small use case with 10 nodes and 12 relationships with ...

Represent data in the limited columns specified

Hi,A graph looks like this A-B-C-DA-EA-F-G (A being a common node)The nodes have a level property based on their position on the graph(A is lvl 1, B,E,F is lvl 2..etc). return the data present in a certain format 1st - return format is limited to 2 n...

gdb_ONE by Node Link
  • 288 Views
  • 0 replies
  • 0 kudos

Share favorites in Neo4j Aura

Hi, how is it possible to import Favorites-Cypher Queries back to Aura? Is there also a possibility to share them directly also with other users? I have found, that the Favorites-Cypher Queries are just stored in the cache of the browser. Will there ...

TiMeJuMp by Node Link
  • 323 Views
  • 0 replies
  • 0 kudos

How to LOAD CSV with a a password protected file

Hello, I'm trying to load a CSV that was published via our company's OneDrive into our Neo4j Aura DB. So I get an HTTPS URL. Because we do not want that the file is public on the internet, we also set a password. Is it possible to attach the password...

TiMeJuMp by Node Link
  • 346 Views
  • 0 replies
  • 0 kudos

How to execute a graphgist query

Hello all, I am trying to create a GraphGist but i have the following problem.I can not execute the queries. I just see an loading icon than never returns the result of my query.My queries are correct because i execute them first locally.Thanks for y...