Here i want to use neovis.js to show the points and relationships. But if i use
labels: {
person: {
// caption: "node_id",
label: "node_id",
// "size":"points",
// value: "node_id",
// group: "community"
// group: "node_id"
}
},
relationships: {
// label:"roles"
},
initialCypher: "MATCH (n:person)-[r]->(m:person) RETURN n,r,m"
};
viz = new NeoVis.default(config);
viz.render();
console.log(viz);
}
i can't get the name of relationships. Just get a line across two points.