how to delete a key from mongoid hash field

167 Views Asked by At

I have a hash field in Mongoid document like < _id: 58a202d407953817ece2989c, d: {"a"=>"b", "c"=>"d"}> i want to pop key a from it so that hash filed contain only c how to do this in mongoid?

1

There are 1 best solutions below

0
On

if we consider data = ..., d: {"a"=>"b", "c"=>"d"}, ... then data.d.delete("a")