Query exact date time in strapi query

How can I query in strapi the exact datetime value from datetime value field?

Here’s mine and it’s not working

 const query  = {        
        date: '2021-07-13 03:48:00',
      }
      const entities = await strapi.query('activities').find(query)
      console.log('Query: ', query,'Result ', entities)

The database makes use of UTC time, so you will need to update your time format accordingly:
2021-07-13T03:48:00Z
hope this helps