Explore with Flux - time column missing

Hi guys,

The Explore panel in Grafana 7.1 for InfluxdB2 with Flux doesn’t seem to work very well. If I simply select a Sample Query, eg the one to see the measurements, it just complains about a missing time column:

import "influxdata/influxdb/v1"
v1.measurements(bucket: v.bucket)

To solve this you need to add a time column, eg:
import “influxdata/influxdb/v1”
v1.measurements(bucket: v.bucket)
|> map(fn: (r) => ({ _value: r._value, _time: now()}))

Can I suggest that either the Sample Queries are fixed up, or that the need for having a timeSeries column is removed - after all, the output of these sample queries is typically for tables, not graphs…