Jakub Nowakowski

Results 10 issues of 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. ![image](https://user-images.githubusercontent.com/35011105/165263348-debb7095-bda9-44d6-b695-d87acd46f3e5.png)

help wanted

**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**...

enhancement
FastCRUD Methods

[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...

enhancement
FastCRUD Methods

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...

refactor

**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...

enhancement

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...

enhancement

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...