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 node & edge detail query for the detail side bar & search #351

Open kmcginnes opened 2 months ago

kmcginnes commented 2 months ago

When selecting a node or edge, the sidebar should show the most up to date information or the user should have the option of refreshing the information.

Implementation

There are two places that node/edge details are shown: search and sidebar.

Each of those should be updated to get the details when the node or edge is selected.

This means that the search queries should either be simplified to not return the properties of the result items, or the search query proactively updates the cache of each result item's properties query.

Tasks

Related