I'm having trouble converting the following valid JSON query to elastic search into the ruby gem 'tire' equivalent. Any help is greatly appriciated...
{
"query" : {
"term" : { "_all" : "coffee" }
},
"filter" : {
"or" : [
{
"term" : { "email_store" : true }
},
{
"term" : { "phone_store" : false }
}
]
}
}