My question is how to I pull out a specific object from this array that has an 'id' with the specific value of 888?
[{ "token" => "1212",
"category" => "A",
"name" => "page 2",
"id" => "888"
},
{ "token" => "3434",
"category" => "B",
"name" => "page 1",
"id" => "999",
}]
I have tried find_by, where, and a whole host of other things.