Definição
$unsetFieldNovidades na versão 5.0.
Remove um campo especificado em um documento.
Você pode usar
$unsetFieldpara remover campos com nomes que contenham pontos (.) ou que comecem com cifrões ($).$unsetFieldé um alias para$setFieldque usa$$REMOVEpara remover campos.
Sintaxe
$unsetField tem a seguinte sintaxe:
{ $unsetField: { field: <String>, input: <Object>, } }
Você deve fornecer os seguintes campos:
Campo | Tipo | Descrição |
|---|---|---|
| String | Campo no objeto |
| Objeto | Documento que contém o |
Comportamento
Se
inputfor avaliado comomissing,undefinedounull,$unsetFieldretornaránulle não atualizaráinput.Se
inputfor avaliado como algo diferente de um objeto,missing,undefinedounull,$unsetFieldretornará um erro.Se
fieldresolver para algo diferente de uma constante de string,$unsetFieldretornará um erro.$unsetFieldnão atravessa implicitamente objetos ou arrays. Por exemplo,$unsetFieldavalia um valorfieldde"a.b.c"como um campo de nível superior"a.b.c"em vez de um campo aninhado,{ "a": { "b": { "c": } } }.
Exemplos
Remover Campos que Contêm Períodos (.)
Considere a coleção de inventário:
db.inventory.insertMany( [ { _id: 1, item: "sweatshirt", qty: 300, "price.usd": 45.99 }, { _id: 2, item: "winter coat", qty: 200, "price.usd": 499.99 }, { _id: 3, item: "sun dress", qty: 250, "price.usd": 199.99 }, { _id: 4, item: "leather boots", qty: 300, "price.usd": 249.99 }, { _id: 5, item: "bow tie", qty: 180, "price.usd": 9.99 } ] )
Use o estágio de pipeline $replaceWith e o operador $unsetField para remover o campo "price.usd" de cada documento:
db.inventory.aggregate( [ { $replaceWith: { $unsetField: { field: "price.usd", input: "$$ROOT" } } } ] )
A operação retorna os seguintes resultados:
[ { _id: 1, item: 'sweatshirt', qty: 300 }, { _id: 2, item: 'winter coat', qty: 200 }, { _id: 3, item: 'sun dress', qty: 250 }, { _id: 4, item: 'leather boots', qty: 300 }, { _id: 5, item: 'bow tie', qty: 180 } ]
Remover campos que começam com um cifrão ($)
Considere a coleção de inventário:
db.inventory.insertMany( [ { _id: 1, item: "sweatshirt", qty: 300, "$price": 45.99 }, { _id: 2, item: "winter coat", qty: 200, "$price": 499.99 }, { _id: 3, item: "sun dress", qty: 250, "$price": 199.99 }, { _id: 4, item: "leather boots", qty: 300, "$price": 249.99 }, { _id: 5, item: "bow tie", qty: 180, "$price": 9.99 } ] )
Use o estágio de pipeline $replaceWith com os operadores $unsetField e $literal para remover o campo "$price" de cada documento:
db.inventory.aggregate( [ { $replaceWith: { $unsetField: { field: { $literal: "$price" }, input: "$$ROOT" } } } ] )
A operação retorna os seguintes resultados:
[ { _id: 1, item: 'sweatshirt', qty: 300 }, { _id: 2, item: 'winter coat', qty: 200 }, { _id: 3, item: 'sun dress', qty: 250 }, { _id: 4, item: 'leather boots', qty: 300 }, { _id: 5, item: 'bow tie', qty: 180 } ]
Remover um subcampo
Considere a coleção de inventário:
db.inventory.insertMany( [ { _id: 1, item: "sweatshirt", qty: 300, "price": {"usd":45.99, "euro": 38.77 } }, { _id: 2, item: "winter coat", qty: 200, "price": { "usd": 499.99, "euro": 420.51 } }, { _id: 3, item: "sun dress", qty: 250, "price": { "usd": 199.99, "euro": 167.70 } }, { _id: 4, item: "leather boots", qty: 300, "price": { "usd": 249.99, "euro": 210.68 } }, { _id: 5, item: "bow tie", qty: 180, "price": { "usd": 9.99, "euro": 8.42 } } ] )
O campo "price" contém um documento com dois subcampos, "usd" e "euro". Você não pode usar "price.euro" para identificar e remover "euro" porque o MongoDB analisa "price.euro" como um nome de campo de nível superior que por acaso contém um ponto (.).
Use o estágio do pipeline $replaceWith com $setField e uma operação $unsetField aninhada para remover o campo "euro" :
db.inventory.aggregate( [ { $replaceWith: { $setField: { field: "price", input: "$$ROOT", value: { $unsetField: { field: "euro", input: { $getField: "price" } } } } } } ] )
A operação retorna os seguintes resultados:
[ { _id: 1, item: "sweatshirt", qty: 300, price: { usd: 45.99 } }, { _id: 2, item: "winter coat", qty: 200, price: { usd: 499.99 } }, { _id: 3, item: "sun dress", qty: 250, price: { usd: 199.99 } }, { _id: 4, item: "leather boots", qty: 300, price: { usd: 249.99 } }, { _id: 5, item: "bow tie", qty: 180, price: { usd: 9.99 } } ]