gtfierro/hod-v1

Clicking results should reveal more information

Closed this issue · 2 comments

If a user runs a query, make the results clickable so that the user can find URI, UUID and other relationships easily.

We have the new /search URI on the web interface, but it doesn't currently list URIs and UUIDs (but it should)

Adding URIs and UUIDs is a bit tricker than I expected because we'd have to do it as 2 different queries. The current query for rendering the nodes in the /search interface also grabs the classes for each node. Literals like URIs and UUIDs don't have classes, so we'd have to join up multiple queries, which is going to be easier if this is ever written in a more modern JS style. For now, I think this is a pass