Database

[{"title":"The book","author":"Joe Bob","tags":["dogs","funny","race"],"categories":["fiction","adventure"]},{"title":"Another book","author":"Ron Chernow","tags":["history","biography","race"],"categories":["history","adventure","marketing"]}]

Query

db.collection.find({$or:[{"title":{$regex:"Mark",$options:"i"}},{"author":{$regex:"Mark",$options:"i"}},{"tags":{$regex:"Mark",$options:"i"}},{"categories":{$regex:"Mark",$options:"i"}},]})

Result