Skip to content

Instantly share code, notes, and snippets.

@mlicheng
Created March 11, 2021 09:41
Show Gist options
  • Save mlicheng/62e596a16b19bcda7a85a8a63176a5af to your computer and use it in GitHub Desktop.
Save mlicheng/62e596a16b19bcda7a85a8a63176a5af to your computer and use it in GitHub Desktop.
mongodb find by array element type
db.getCollection("collection_name").find({
"filed_name": {
$elemMatch: {
$ne: null,
$type: "string" // object, objectId ...
}
}
}, {
"filed_name": 1
})
// type refer to https://docs.mongodb.com/manual/reference/operator/query/type/index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment