Mongoose: try to remove referenced objects using $pullAll

Mongoose: try to remove referenced objects using $pullAll



In a nodejs app using Mongoose, I have a relation has many: App has many AppClients.



Models:


const mongoose = require('mongoose')

const appSchema = new mongoose.Schema(
name: String,
appClients : [ type: mongoose.Schema.Types.ObjectId, ref: 'AppClient' ]
)

appSchema.pre('remove', async function(next)
const app = this
await AppClient.remove(_id: $in: app.appClients ).exec()
next()
)

const App = mongoose.model('App', appSchema)

module.exports = App

const appClientSchema = new mongoose.Schema(
field1: String,
field2: String
)

const AppClient = mongoose.model('AppClient', appClientSchema)



What I wanted is to use $pullAll to remove the AppClients documents referenced in the App. I tried with:


appSchema.pre('remove', async function(next)
const app = this
await App.update( _id: app.id , $pullAll: appClients: app.appClients ).exec()
next()
)



but this not work. Does not throw any error but the 'app.appClients' are not removed> I was following the docs and can´t find out any problem/gap.









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)