Open jesteria opened 10 years ago
It'd be nice for filtering to default to the __eq operator
__eq
s.t. this:
>>> Token.items.query(userid=1)
works just like this:
>>> Token.items.query(userid__eq=1) […]
rather than:
>>> Token.items.query(userid=1) … UnknownFilterTypeError: Operator 'userid' from 'userid' is not recognized.
It'd be nice for filtering to default to the
__eq
operators.t. this:
works just like this:
rather than: