Hi, For the linkurious/sigma part, as I understand, you can see the graph. So what do you want to do ? Is it make an over panel with the node's detail ?
All nodes data are store into the graph sigma object, and you can get access it by `sigma.graph().nodes()` Nodes are created with the following structure : * id -> Neo4j node id * label -> Neo4j node id * neo4j_labels -> Labels of Neo4j node * neo4j_data -> All the properties of the neo4j node Take a look at the documentation : https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.neo4j.cypher , and don't hesitate to ask me question. Cheers. 2017-03-17 7:53 GMT+01:00 <[email protected]>: > can i please know how to visualize the neo4j graph onto linkurious using > sigma.parsers.cypher. I'm getting the whole graph database of what i had > already created on neo4j but not able to get it's node properties when i run > the sigma.parsers.cypher.js file of the linkurious examples. May i know how > could that be done ? Thanks in advance > > On Thursday, March 16, 2017 at 3:11:28 AM UTC+5:30, Michael Hunger wrote: >> >> Can you try to use these instructions: http://debian.neo4j.org/ >> >> On Wed, Mar 15, 2017 at 7:39 PM, Anup Kumar <[email protected]> wrote: >>> >>> Using instruction >>> "http://rtoc.azurewebsites.net/2016/05/11/installing-neo4j-on-a-google-compute-engine/" >>> >>> >>> but getting below error: root@test-instance:/home/a_anupkumar08# >>> /etc/init.d/neo4j-service start bash: /etc/init.d/neo4j-service: No such >>> file or directory >>> >>> >>> root@test-instance:/home/a_anupkumar08# service neo4j-service start >>> Failed to start neo4j-service.service: Unit neo4j-service.service failed to >>> load: No such file or directory. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Neo4j" group. >>> To unsubscribe from this group and stop receiving emails from it, send an >>> email to [email protected]. >>> For more options, visit https://groups.google.com/d/optout. >> >> > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
