Add custom values in the query for timeFilter

I have below query and need to replace varibale with hard coded values.

Below query works fine when given the time range from the dashboard filter

SELECT mean("count") / $send_interval FROM "$measurement_name" WHERE ("transaction" = 'all' AND "application" =~ /^$application$/) AND $timeFilter GROUP BY time($__interval) fill(null)

I eneterd same time range (2022-05-05 12:46:00 - 2022-05-05 12:53:00) in millisecon as below, However can’t see the data in the graph

SELECT mean("count") / $send_interval FROM "$measurement_name" WHERE ("transaction" = 'all' AND "application" =~ /^$application$/) AND time > 1651718760000 AND time < 1651719180000 GROUP BY time($__interval) fill(null)

My version:

Grafana v6.4.1
Influxdb 1.7.7

Did you find any solution?