How to get spesific data in Long Date value

My data in user.created_at field is like below

Tue Mar 10 23:03:00 +0000 2020
Tue Mar 10 04:29:18 +0000 2020
Tue Jan 21 08:45:43 +0000 2020
Tue Mar 10 00:11:45 +0000 2020
Tue Jan 28 04:11:45 +0000 2020
Sun Mar 08 10:19:19 +0000 2020

And I tried to Query ES like

{
 "query": {
   "bool": {
     "must": [
       {
        "match": {
          "sentiment": "neutral"
         }
        }
        ,
       {
        "wildcard": {
          "user.created_at": "*2020"
         }
       }
       ,
       {
        "match": {
          "user.created_at": "Tue Mar 10"
         }
       }
      ],
      "must_not": [ ],
      "should": [ ]
       }
    }}

But there is also show another datas which is that I don't want too. My Question is, how do I return only data with date Tue Mar 10 23:03:00 +0000 2020 spesifically ? I don't have any idea about this. Please help me

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.