Guest User

Untitled

a guest
Mar 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. var viz;
  4.  
  5. function draw() {
  6. var config = {
  7. container_id: "viz",
  8. server_url: "bolt://localhost:7687",
  9. server_user: "neo4j",
  10. server_password: "sorts-swims-burglaries",
  11. labels: {
  12. "Character": {
  13. "caption": "name",
  14. "size": "pagerank",
  15. "community": "community"
  16. }
  17. },
  18. relationships: {
  19. "INTERACTS": {
  20. "thickness": "weight",
  21. "caption": false
  22. }
  23. },
  24. initial_cypher: "MATCH (n)-[r:INTERACTS]->(m) RETURN *"
  25. };
  26.  
  27. viz = new NeoVis.default(config);
  28. viz.render();
  29. }
  30. </script>
Add Comment
Please, Sign In to add comment