crud-service
crud-service copied to clipboard
Query parameter should accept lists of values
t would be nice to have the query parameters (e.g. for get list API) supporting multiple values. For instance suppose you want to get two documents with _id 1234 and 5678, it would be nice to invoke the API like this
/?_id=1234,5678
instead of using the _q param
/?_q={"_id":{"$in":["1234","5678"]}}