Pass the date/time of raw of data to another dashboard

I have a time series panel. I want to dig into details of a bar (row) on specific date show in tooltip. How do I pass date in tooltip as a variable in data link?

Raw Date

Solved it!

I used &from={__value.time}&to={__value.time} in the data link url.

And then in detailed dashboard query used a.created_at between date(’{__from:date:YYYY-MM-DD}') + time '00:00' and date('{__from:date:YYYY-MM-DD}’) + time ‘23:59:59’ to create 24hr date range.