0

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)?

John
  • 2,107
  • 3
  • 22
  • 39

1 Answers1

2

This is supported:

/?where={"tags": {"$in": ["programming"]}}

Regex are not allowed in there thought.

Nicola Iarocci
  • 6,606
  • 1
  • 20
  • 33