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.

boris_bakman
Node Clone
since ‎08-09-2020
‎06-01-2022

User Statistics

  • 22 Posts
  • 0 Solutions
  • 11 Kudos given
  • 1 Kudos received

User Activity

Hello, I know there's the ability to take a .ttl file format and insert it to a Neo4j using the neo-semantics library. In the graph, the .ttl file is being divided into its relevant objects. My question is: how can I convert a .ttl file into POJO's w...
Hello, executing below query I'm receiving an error: Query: @Query( "call apoc.periodic.iterate(" + "\"UNWIND $items as item return item\" , " + "\"MERGE (s1:s{id:item.customId}) " + "WITH s1 " + ...
Hi, I'm trying to execute the following Java code with apoc without success. Can somebody assist me? public interface IRelationRepository { @Query("call apoc.periodic.iterate(" + "\"UNWIND $items as item return item " + ...
Hi everybody, this is the 1st time I'm using APOC. I'm trying the below query with APOC but experiencing some errors. I'd really appreciate help fixing/organizing my query. Note: without the use of APOC, all works fine. call apoc.periodic.iterate( "...
Hello, this is a best-practice / performance question: I have a lot of nodes, where each node has a large amount of data in it. An architecture solution I thought about is keeping the nodes "thin". I'll explain, each node will hold the minimum needed...