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.

MirtoBusico
Node Clone
since ‎11-23-2018
‎06-01-2022

User Statistics

  • 23 Posts
  • 0 Solutions
  • 1 Kudos given
  • 8 Kudos received

User Activity

SOLVED In neo4j.conf the correct syntax is: dbms.security.procedures.unrestricted=apoc.*, algo.* dbms.security.procedures.whitelist=apoc.*, algo.* Hi all, I'm trying to install graph algoritms plugin in a neo4j 3.5.1 community. Seems that there is s...
UPDATE: algo do not correctly install - see other topic Hi all, I want to list the procedures installed with plugins. I have neo4j 3.5.1 community and the relative apoc and algo procedures. To list installed procedure the manual at https://neo4j.co...
Hi all, I'm trying to extract the relationship types from a query; but it works only for direct relation. This: MATCH (n:POC) -[r]- (m) RETURN type(r) gives correctly ╒═════════╕ │"type(r)"│ ╞═════════╡ │"SON_OF" │ ├─────────┤ │"SON_OF" │ └─────────...
Sorry, I'm again here. I was not able to find the apoc.create.addLabel correct syntax. I'm trying to add the labels in the "Label1" column to the previously created nodes Trying to adapt this code https://neo4j.com/developer/kb/using-cypher-and-apo...
Hi all, I have a csv file containing: "FromNode","RelationType","ToNode" "Cybersecurity knowledge","CONNECTED","Vulnerabilities" "Cybersecurity knowledge","RELATED","Mitigations" Trying to load from csv I used this (wrong) statement: LOAD CSV WITH...