I understand eve is by default using mongodb as backend, and mongodb actually support indexing/query on array field (doc) e.g.
db.inventory.find( { tags: { $in: [ /^be/, /^st/ ] } } )
do we support the same in eve? if not, how far are we (want to estimate whether I need to make some change in the schema - not ideal though)?