Mathieu Drapeau
Mathieu Drapeau
@lyschoening Actually, that query doesn't work. It seems the inheritance of the `Meta` is not picking parent attributes. `create_date` and `update_date` are not exposed for resources which inherit from ArchivingResource...
@lyschoening no, same error as well without subclassing
@lyschoening How would you represent the api syntax in order to support OR filters?
@lyschoening What about a list to represent OR expressions? searching for author AND title: `/books?where={"author": {"$contains": "John"}, "title": {"$contains": "Python"}}` searching for author OR title: `/books?where=[{"author": {"$contains": "John"}}, {"title": {"$contains":...
Here is another use-case this feature would be highly valuable: Having long running sporadic tasks being executed in AWS, we need to appropriately provision the instance and let it execute...