Guest User

Untitled

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