I have an eve app running on my mongodb collection col10
. I am trying to get a response where I have multiple values selected from the same key, example:
http://127.0.0.1:4567/col10?where={"var0053":[1130,1113]}
## returns 0 objects
I have also tried:
http://127.0.0.1:4567/col10?where=var0053==[1130,1113]
## returns just the objects with var0053 = 1113
is there a way of requesting to server more than one value from the same key?