Measurement query returns current time not create time

InfluxDB v2.7.11Server: fbf5d4aFrontend: f4b5694

I am in browser querying raw data and I am getting _start _stop values updated to the current time instead of seeing the recorded time of creation. What do I miss?
Here is my query:

from(bucket: “myBucket”)
|> range(start: v.timeRangeStart)
|> filter(fn: (r) => r[“_measurement”] == “expS01”)
|> distinct()

Never mind…
I took out the last line |> distinct() and now the query returns _start, _stop, _time and all other fields.
Newbie mistakes… :slight_smile: