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.

armensanoyan
Node Clone
since ‎04-15-2021
‎06-01-2022

User Statistics

  • 36 Posts
  • 0 Solutions
  • 59 Kudos given
  • 2 Kudos received

User Activity

Hi. In my project I have PostgreSQL database as main DB and I need to keep synchronized my neo4j DB. To do so I wan to use Debezium for CDC, kafka and neo4j streams plugin. One of the reasons I prefer Debezium to jdbc is because it's real time. So at...
Hi! By using apoc.merge.relationship() function I expect that relationships should be identified only by identProps argument. So for Example if I update the relationshipType but provide same identProps I want to update the name of relationship and n...
Hi. Congratulations for new release! In release notes I have seen TEXT indexes replace B-tree indexes for string queries. which should provide Improved performance of full text search when limit is specified from github changelog. So my question ...
Hi. I am trying to implement fuzzy search for my nodes with their properties. I use db.index.fulltext.createNodeIndex() to create index and db.index.fulltext.queryNodes() to search. This works fine and I am able to do different kind of searches inclu...
I have data in object with this structure [{ name:'here is name, which can have punctuation marks ', value: 'here will be text ' }, { name:'here is name, which can have punctuation marks ', value: 'here will be text ' }] I am trying to fin...