Skip to content

luoxiao-supermap/gdb-neo4j-g6

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

本项目的初衷,参考资料的第一条

格式

目标格式

const data = {
  // 点集
  nodes: [
    {
      id: "node1",
      x: 100,
      y: 200,
    },
    {
      id: "node2",
      x: 300,
      y: 200,
    },
  ],
  // 边集
  edges: [
    // 表示一条从 node1 节点连接到 node2 节点的边
    {
      source: "node1",
      target: "node2",
    },
  ],
};

cheatsheet

npm install @antv/graphin@latest --save
npm install @antv/graphin-components@latest --save
npm install @antv/graphin-icons --save

资料

  1. neo4j-g6 讨论
  2. neovis
  3. motif
  4. neo4j-graphist
  5. graphin

About

just transform Neo4j Records to G6 format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 61.8%
  • JavaScript 15.8%
  • CSS 11.7%
  • HTML 10.7%