checking type in variable and length

PHOTO EMBED

Tue Mar 19 2024 16:09:32 GMT+0000 (Coordinated Universal Time)

Saved by @CodeWithSachin #aggregation #mongodb

[
  {
    $match: {
  $and: [
    { "age": { $type: "string" } },
    { $expr: { $gt: [{ $strLenCP: "$age" }, 5] } }
  ]
}
  },
    {
      $project: {
        email:1
      
    }
    }
  
]
content_copyCOPY