Bar graph and tables not adjusting according to quick range

I have a table and a bar graph that are displaying correctly and I’ve checked that the Influx query returns real timestamps (not epoch zero), however the content of both visualizations does not adjust to reflect specified time ranges. It only shows the total result at present, and doesn’t change. Is this normal behavior? Is there really no way to have the table and bar graph adjust for different time ranges without hard coding the time range in the query?

Query for my table:
SELECT distinct(“duration”) FROM “execution” WHERE “duration” > 0 GROUP BY “name”,time(1m)

Query for my bar graph:
SELECT count(“value”) FROM “auto_execution” GROUP BY “type”,time(1d)