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.

steve5
Node
since ‎07-21-2021
‎06-01-2022

User Statistics

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

User Activity

I have a CSV source and I want to build 2 things: Load the CSV to my Neo4j graph and turn every row to a node.Build relationship between nodes based on a cosine similarity(above some threshold alpha). Here is what I have already done for (1): WITH "h...
I have the following node in my Neo4j graph (actually I have many of them, this is a representative node): {id: 1, name: "John", last_name: "Doe", age: 40, city: "New York", credit_score: 5.5} And I want to transform all the attributes with a type s...
If my nodes look like: {id: 1, name: "John", last_name: "Doe", age: 40, city: "New York", credit_score: 5.5} {id: 2, name: "Linda", last_name: "Lumbo", age: 32, city: "Washington", credit_score: 5.5} {id: 3, name: "Greg", last_name: "Tanta", age: 28,...
I have the following CSV: id attr value 1 abc 1.1 1 eww -9.4 1 ssv likj 2 we2 1 2 eww 900 3 kuku -91 3 lulu 383 3 ssv bubu I would like to create 3 nodes that consists of: Node 1: {id:1, abc: 1.1, ...
I have a lot of triplets (node, relation, node or circle, relation, circle) with different attributes for each user node (it can contain user_id, location, role for some nodes and others can be without location but with their marital status, use_car ...