It'd be nice for filtering to default to the __eq operator
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
__eqoperators.t. this:
works just like this:
rather than: