I'm brand new to Neo4j, and I'm having difficulty relating the guidance docs to my data to crate some graph projections...
I've loaded data into a table: LOAD CSV WITH HEADERS FROM 'https://***.csv' AS row MERGE (Category{user1: row.User1, user2: row.User2, Count: row.Count})
An example of the data is:
I'm trying to create a graph projection on the basis the 'Row: user1' -> has_followed -> 'Row: user2' (the no. of times specified in count) but haven't quite got the syntax right.
I intend to create a graph projection per category.
EDIT - here's an example of my expected output with all the sample data provided (which in practice I would do as 2 separate graphs based on the "category"):