Every line of 'mongoose deleteone' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
111 async delete(softDeletes) { 112 if (softDeletes) { 113 return this.attributes['delete'](); 114 } 115 return this.attributes.remove(); 116 }
175 async deleteOne(collectionName: string, query: ObjectLiteral, options?: CollectionOptions): Promise { 176 return await this.getCollection(collectionName).deleteOne(query, options); 177 }
82 async delete(entity, options) { 83 await this.getDatabase() 84 .collection(this.getCollectionName(entity)) 85 .deleteOne({ id: entity.id }); 86 return new QueryResult(true); 87 }
195 deleteOne(...args: Array) { 196 let collection = this._connect() 197 198 return collection.deleteOne.apply(collection, args) 199 }
201 findOneAndDelete(query: ObjectLiteral, options?: { projection?: Object, sort?: Object, maxTimeMS?: number }): Promise { 202 return this.manager.findOneAndDelete(this.metadata.tableName, query, options); 203 }
113 async deleteOne(doctype, name) { 114 return await this.run(`delete from ${doctype} where name=?`, name); 115 }
40 async deleteOne(id) { 41 const col = await this.collection() 42 // eslint-disable-next-line 43 return await col.deleteOne({ _id: ObjectID(id) }) 44 }
73 remove(collection, conditions) { 74 if (conditions.hasOwnProperty('id')) 75 this.invalidate(collection, conditions.id); 76 77 return this.models[collection].deleteOne(conditions); 78 }
161 remove(id, cb) { 162 const self = this; 163 return pg(done => self.collection.findByIdAndRemove(id, (err, res) => { 164 if (err) { 165 return done(err); 166 } 167 done(null, parse(res)); 168 }), cb); 169 }
111 async delete(id) 112 { 113 await this.collection('images').remove_by_id(id) 114 }