https://github.com/gotoolkits/n4jformator
Transfer Neo4j format data to Cytoscape.js Elements format
https://github.com/gotoolkits/n4jformator
Last synced: about 1 month ago
JSON representation
Transfer Neo4j format data to Cytoscape.js Elements format
- Host: GitHub
- URL: https://github.com/gotoolkits/n4jformator
- Owner: gotoolkits
- License: apache-2.0
- Created: 2018-05-04T07:37:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T09:59:27.000Z (about 7 years ago)
- Last Synced: 2025-04-27T00:34:08.766Z (about 1 month ago)
- Language: Go
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# n4jFormator
Transfer Neo4j format data to Cytoscape.js Elements format#### Description
获取Neo4j数据转换为Cytoscape.js Elements格式数据
Transfer Neo4j format data to Cytoscape.js Elements format#### API And Cypher
获取所有节点信息
To get all formatted nodes data> API: `/api/getNodes`
> Cypher: `MATCH (n) RETURN n`获取所有所有关系信息
To get all formatted nodes relationships(paths)
> API: `/api/getPaths`
> Cypher: `MATCH p=()-->() RETURN p`