How to do multiple aggregation (min, max, mean) together using Flux query?

I am trying to transfer a InfluxQL query to Flux query but find it really hard to do multiple aggregation (min, max, mean) together using a Flux query:

SELECT MIN() AS MinValue, MAX() AS MaxValue, MEAN() AS AverageValue FROM … WHERE Time >= ‘2020-07-25T22:13:38Z’ and Time <= ‘2020-07-25T22:18:38Z’ GROUP BY FILL(none);

Can someone please help? Or direct me to the correct documention/example showing how to do min/max/mean together in Flux?

Still getting my head around flux as well. I asked a similar question last week and Scott suggested this method to do it (and it’s been working well!)

This might be useful: