Is there a way to query reference tables directly using AQL, without referencing events? Or are reference tables only meant to be joined with events?
I can only find examples of referencing reference table data through events in the
documentation.
For example, if I have a reference table
my_table with fields
time and
info, is it possible to do something like this:
SELECT time, info
FROM my_table
ORDER BY time
LIMIT 10
------------------------------
Wesley Agena
------------------------------