how can i query all the records that contains a specific string?
for example:
if those at the db
{
"ip": "185.239.131.76",
"domain": "http://express.com",
"event_type": "page_view"
},
{
"ip": "185.239.131.76",
"domain": "http://express.com",
"event_type": "page_view"
},
{
"ip": "37.39.244.71",
"domain": "http://express.com",
"event_type": "view"
},
and i want to fetch all records that contains the string "page"
so i get the only the first 2 of the 3 records above?
can show the http query and the nest query also?
thanks