aws / graph-explorer

React-based web application that enables users to visualize both property graph and RDF data and explore connections between data without having to write graph queries.
https://github.com/aws/graph-explorer
Apache License 2.0
305 stars 46 forks source link

[Task] Defer neighbor counts by type query for the expand side bar #341

Open kmcginnes opened 2 months ago

kmcginnes commented 2 months ago

When adding a node to the graph, we fire off a query to get the neighbor node types and counts to show in the side bar and in the graph.

This is can be an expensive query that is not handled well by the UI. If it fails nothing happens, if it is slow nothing happens.

Notes

This query is performed in two places.

Tasks

Related Issues