I'm new to Neo4j, so apologies if this is very basic...
I am loading in my data, which contains 4 columns (Category, User1, User2, Weight) - weight is an integer, as follows:
> LOAD CSV WITH HEADERS FROM 'file:///file.csv' AS row
> WITH toInteger(row...