How to pull a nested Document

Solution
db.collection.update(
{ "name": "Random Name 2" },
{ $pull: { "likings": { dinner: { $exists: true } } }
})