You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wey-gu
changed the title
api: introduce abstraction to better prepare data for graph vis
api: introduce interface/function to better prepare data for graph vis
Feb 21, 2024
result = session.execute('GET SUBGRAPH WITH PROP 2 STEPS FROM "player101" YIELD VERTICES AS nodes, EDGES AS relationships;')
v = result.dict_for_vis()
implement: #318
…ci (#323)
* feat: resultSet sugar for Graph Visulization
result = session.execute('GET SUBGRAPH WITH PROP 2 STEPS FROM "player101" YIELD VERTICES AS nodes, EDGES AS relationships;')
v = result.dict_for_vis()
implement: #318
* pop rank to prop
* feat: resultSet.as_pandas() && ValueWrapper.cast_primitive()
* docs and tests
* chore: polishing wording of contribution
* docs: polishing readme
* fix: test cases missing import(sorry)
* fix: tag props calling failure and tests
* fix test path primitive
* fix tests, add example tests
* fix time.cast_primitive()
* docs: polishing Getting Started
in a straightforward way
* feat: Config and SessionPoolConfig could be omit by default
- Readme getting started polished
- Config should be able to omit
- The previous SessionPoolConfig Check mechnism was wrong, fixed it
* docs: graph vis with dict_for_vis & Apache ECharts
* fix: not run GraphVis example in CI
* address Hao Xin's comment
---------
Co-authored-by: Anqi <[email protected]>
Like an interface to parse arbitrary resultset as a list of vertices and a list of edges.
With it, those who are building things to visualize graph data will be extremely happy.
cc @Nicole00 @haoxins
The text was updated successfully, but these errors were encountered: