LOAD CSV WITH HEADERS FROM 'https://gist.githubusercontent.com/adib-enc/d01f3413665615232bb6ce1b8a8ed2c3/raw/ff374363111f6249e7738dc004ed61e993df0385/sino.csv' as row
MERGE (k:Kata {kata: row.wx})
MERGE (s:Sinonim {sinonim: row.wsinonim, w1: row.w1, w2: row.w2, wx: row.wx});
match (k:Kata),(s:Sinonim)
where k.kata = s.wx
merge (k)-[r:SINONIM]->(s)
return type(r), r.nama, k.kata, s.wsinonim