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.

andreperez
Graph Buddy
since ‎06-28-2021
‎06-01-2022

User Statistics

  • 44 Posts
  • 3 Solutions
  • 40 Kudos given
  • 15 Kudos received

User Activity

PART 1: [my previous post](https://community.neo4j.com/t/can-this-query-be-optimized-gds-node-similarity/42063/4) I created a python driver and ran those queries. In order to avoid having hundreds of subgraphs projected in the memory and exploding t...
I am using gds.nodeSimilarity.stream to calculate similarity between my nodes (aprox. 3 Millions), Node A is the main one, which all other node labels connect to. I'm using the following query for an anonymous graph: CALL gds.nodeSimilarity.stream({n...
I'm trying to associate two lists, in a one-to-one relationship. This query is returning the following: all objects in p are merged with only the first element of r. I need something like id1(n)-[:HAS_ID]-id2(n) MATCH p=(n:ID1) MATCH r=(o:ID2) WITH...
I'm using Pandas to write some values in a CSV file, and ingesting this CSV with the Neo4J Python driver. In order to speed up the project I'm working I setted a default value ("REPLACE_ME_PLEASE") using the Pandas fillna method to populate null valu...
There is a graph with multiple node labels (ip, device, url, etc) and a "main" node (main_id) which will always have a connection to the previous mentioned nodes (they are all directed from the main_id to the other nodes). (:ip)<-[:HAS_IP]-(:main_id)...