Jakub Nowakowski
Jakub Nowakowski
It would be awesome if we could have something like: ``` @pytest.mark.parametrize('db_object', [G(Model1), G(Model2)]) def test_foo(db_object): ... ``` Looks like there is some issue with the db init, would it...
I just spotted a minor UI issue. Actions popup not being displayed properly. 
**Is your feature request related to a problem? Please describe.** I'm wonderring if it's currently possible to have multiple layers of nesting in joined objects. **Describe the solution you'd like**...
[WIP] Feel free to leave any comments or requests.
**Is your feature request related to a problem? Please describe.** I can't find a way to annotate number of related objects using the fastcrud.get_multi(). This is a raw sqlalchemy query...
I wanted to pass a specific test to be run with pytest. Initially I came with modifying `test.sh` script so it accepts additional parameter. Then noticed it's already supported in...
**Is your feature request related to a problem? Please describe.** For OneToMany relationships, using `get_joined` or `get_multi_joined ` returns one nested object, while in some cases I'd like to return...
Let's say you want to use `crud.get_joined` on your router `read_item` method. What you end up doing is something like: ``` class MyItemRouter(EndpointCreator): def _read_items(self): """Creates an endpoint for reading...
The idea is that if you use EndpointCreator, the model is passed twice: once to the corresponding FastCRUD and another time class itself. As the model is already required in...
### Checklist - [X] There are no similar issues or pull requests for this yet. ### Is your feature related to a problem? Please describe. I can specify columns to...