blacksmithgu / datacore

Work-in-progress successor to Dataview with a focus on UX and speed.
MIT License
1.25k stars 11 forks source link

Add syntax to build links in graph for the query output #20

Open laraib07 opened 8 months ago

laraib07 commented 8 months ago

The idea is simple. I am querying list of books in a central note.

TABLE author, highlightCounts
FROM book_highlights

It would be better if the syntax had option to build a graph too. Like:

TABLE author, highlightCounts
FROM book_highlights
BUILD GRAPH
blacksmithgu commented 8 months ago

In dataview I guess this would end up specifically being something like

GRAPH author, highlightCounts FROM book_highlights

Charting/graphing is actually a pretty big area in general (tons and tons of customization that people are likely going to want to do); I'm likely going to add this as a separate smaller plugin.