No MongoDB, o
$not
o operador de pipeline de agregação avalia um booleano e retorna o valor booleano oposto. Em outras palavras, quando o booleano é avaliado como
true
, o $not
operador retorna false
. E quando o booleano for avaliado como false
, o $not
operador retorna true
. Exemplo
Suponha que tenhamos uma coleção chamada
tests
com os seguintes documentos:{ "_id" : 1, "data" : true } { "_id" : 2, "data" : false }
Veja o que acontece quando aplicamos
$not
para os data
campo de cada documento:db.test.aggregate(
[
{ $match: { _id: { $in: [ 1, 2 ] } } },
{ $project: {
_id: 0,
data: 1,
result: { $not: [ "$data" ] } }
}
]
)
Resultado:
{ "data" : true, "result" : false } { "data" : false, "result" : true }
Podemos ver que
$not
retornou o oposto de cada booleano. Valores zero, nulos e indefinidos
O
$not
operador avalia 0
, null
, e undefined
como false
– o que significa que retorna true
. Suponha que temos os seguintes documentos:
{ "_id" : 3, "data" : 0 } { "_id" : 4, "data" : null } { "_id" : 5, "data" : undefined }
Veja o que acontece quando aplicamos
$not
:db.test.aggregate(
[
{ $match: { _id: { $in: [ 3, 4, 5 ] } } },
{ $project: {
_id: 0,
data: 1,
result: { $not: [ "$data" ] } }
}
]
)
Resultado:
{ "data" : 0, "result" : true } { "data" : null, "result" : true } { "data" : undefined, "result" : true }
Como esperado, todos retornaram
true
(o que significa que eles avaliaram como false
. Todos os outros valores
O
$not
operador todos os outros valores como true
– o que significa que retorna false
. Suponha que temos os seguintes documentos:
{ "_id" : 6, "data" : [ true ] } { "_id" : 7, "data" : [ false ] } { "_id" : 8, "data" : 5 } { "_id" : 9, "data" : "Bat" } { "_id" : 10, "data" : ISODate("2021-01-03T23:30:15.100Z") }
Veja o que acontece quando aplicamos
$not
:db.test.aggregate(
[
{ $match: { _id: { $in: [ 6, 7, 8, 9, 10 ] } } },
{ $project: {
_id: 0,
data: 1,
result: { $not: [ "$data" ] } }
}
]
)
Resultado:
{ "data" : [ true ], "result" : false } { "data" : [ false ], "result" : false } { "data" : 5, "result" : false } { "data" : "Bat", "result" : false } { "data" : ISODate("2021-01-03T23:30:15.100Z"), "result" : false }
Todos eles retornam
false
(o que significa que eles avaliam como true
). Campos ausentes
Aplicando
$not
para um campo que não existe é avaliado como false
(o que significa que retorna true
). Suponha que temos o seguinte documento:
{ "_id" : 11 }
E aplicamos
$not
para isso:db.test.aggregate(
[
{ $match: { _id: { $in: [ 11 ] } } },
{ $project: {
_id: 0,
data: 1,
result: { $not: [ "$data" ] } }
}
]
)
Resultado:
{ "result" : true }
Negar outro operador
O
$not
operador pode ser usado para negar a saída booleana de outro operador. Suponha que tenhamos uma coleção chamada
pets
com os seguintes documentos:{ "_id" : 1, "name" : "Wag", "type" : "Dog", "weight" : 20 } { "_id" : 2, "name" : "Bark", "type" : "Dog", "weight" : 10 } { "_id" : 3, "name" : "Meow", "type" : "Cat", "weight" : 7 } { "_id" : 4, "name" : "Scratch", "type" : "Cat", "weight" : 8 } { "_id" : 5, "name" : "Bruce", "type" : "Kangaroo", "weight" : 100 } { "_id" : 6, "name" : "Hop", "type" : "Kangaroo", "weight" : 130 } { "_id" : 7, "name" : "Punch", "type" : "Kangaroo", "weight" : 200 } { "_id" : 8, "name" : "Snap", "type" : "Cat", "weight" : 12 } { "_id" : 9, "name" : "Ruff", "type" : "Dog", "weight" : 30 }
Podemos usar
$not
em conjunto com, digamos, $gt
para avaliar o campo de peso:db.pets.aggregate(
[
{ $project: {
_id: 0,
name: 1,
weight: 1,
result: { $not: [ { $gt: [ "$weight", 100 ] } ] } }
}
]
)
Resultado:
{ "name" : "Wag", "weight" : 20, "result" : true } { "name" : "Bark", "weight" : 10, "result" : true } { "name" : "Meow", "weight" : 7, "result" : true } { "name" : "Scratch", "weight" : 8, "result" : true } { "name" : "Bruce", "weight" : 100, "result" : true } { "name" : "Hop", "weight" : 130, "result" : false } { "name" : "Punch", "weight" : 200, "result" : false } { "name" : "Snap", "weight" : 12, "result" : true } { "name" : "Ruff", "weight" : 30, "result" : true }
Para reiterar isso, aqui está novamente, mas desta vez geramos um campo para o
$gt
resultados, bem como o campo para não $gt
resultados:db.pets.aggregate(
[
{ $project: {
_id: 0,
weight: 1,
gt: { $gt: [ "$weight", 100 ] },
notGt: { $not: [ { $gt: [ "$weight", 100 ] } ] } }
}
]
)
Resultado:
{ "weight" : 20, "gt" : false, "notGt" : true } { "weight" : 10, "gt" : false, "notGt" : true } { "weight" : 7, "gt" : false, "notGt" : true } { "weight" : 8, "gt" : false, "notGt" : true } { "weight" : 100, "gt" : false, "notGt" : true } { "weight" : 130, "gt" : true, "notGt" : false } { "weight" : 200, "gt" : true, "notGt" : false } { "weight" : 12, "gt" : false, "notGt" : true } { "weight" : 30, "gt" : false, "notGt" : true }
Cada vez que
$gt
resultou em true
, o $not
operador virou para false
. E cada vez que $gt
resultou em false
, $not
virou para true
.