It only returns a few recent measurements. If I tried to add “start: -99d” into the query, it shows more. When I tried “start: -999d”, it just gave me a timeout error.
Is there a way to list all measurements? I know I can use start/stop to check every 100 days but I have no clue where to stop.
Also if there is way to list all measurements, is there a way to know what is the start/end time of a measurement?
Also if there is way to list all measurements, is there a way to know what is the start/end time of a measurement?
I don’t know if this is possible with a single query. Because a measurement is equivalent to a table, you would need to define what you mean by “start/end time”–for example, you could retrieve the the list of measurements and then run something like the following query for each measurement:
SELECT
selector_first(temp, time)['time'] AS first_time,
selector_last(temp, time)['time'] AS last_time,
room
FROM home
GROUP BY room