-
### Describe the bug
we generate wrongly the query when there are many nested models
### To Reproduce
1) create the following table structure:
```
drop table if exists bu;
CREATE TABLE bu
(
…
-
Code:
```python
@dataclass
class A0:
pass
@dataclass
class A:
ass: Optional[list["A"]]
@impl_converter()
def a(src: A0, ass: Optional[list[A]]) -> A:
...
```
Part of resu…
-
Hey,
at first, i would like to thank you for your awesome work.
What i'am asking myself right now: Is it possible to have nested eloquent models with this one? Because the migration is allowing only…
-
The `model.loadPyTorchDump()` function does not handle nested module within `Sequential` layers, and is unable to track the layer names correctly to import the files.
Ex: If we have a model from py…
-
The current model is too simple. Use a ORM model with nested models with an example of one-to-many and many-to-many.
-
Hi there,
First of all, thanks for this awesome project :tada:
I have noticed some regression. But it might also be me holding it wrong, thus, feel free to close this issue as "won't fix"
I …
-
I have a data structure with has nesting. I cannot get restplus to create a correct Swagger documentation. I tried
```
ns = api.namespace('calendars', description='Operations related to calendars'…
-
I'm trying to define a model with an array of models inside it with the Android SDK and I'm struggling with a casting problem from HashMap to my model.
Let's take for example a model called Feed that …
-
Hi,
I have a question about the return value of `run` of `FitGenetic` if `refit=0`. Right now, it returns an EnsembleMODNetModel consisting of up to `10 * nested` MODNetModels.
https://github.com…
-
#### Is your feature request related to a problem?
When using a nested `DataCatalog` of the kind
```python
from pytask import DataCatalog
MODEL_NAMES = ("ols", "logistic_regression")
DAT…