const cleanMongo = (name) => {
Item.find({ name: name }, (foundItem) => {
console.log('found item equals', foundItem)
});
For some reason, the .log is always says the search returns with null, when it should be returning with a matching document queried successfully only moments before.