NT-Timm

Results 4 comments of NT-Timm

Try this: ``` @strawberry.django.filters.filter(models.License, lookups=True) class LicenseFilter: id: str school: Optional[Annotated["SchoolFilter", strawberry.lazy("school.filters")]] ... @strawberry.django.filters.filter(models.School, lookups=True) class SchoolFilter: id: str license: Optional[Annotated["LicenseFilter", strawberry.lazy("school.filters")]] ... ``` If the filters are in other...

Was this ever fixed? I'm also getting just a list of 1. Using RelatedFactoryList. Also gives a decrepated warning over a posthook save.

``` lib\site-packages\factory\django.py:181: DeprecationWarning: TestFactory._after_postgeneration will stop saving the instance after postgeneration hooks in the next major release. If the save call is extraneous, set skip_postgeneration_save=True in the PaymentPlanFactory.Meta. To keep...

I found another "question" It seems python bools are not supported as well. They turn into the standard str from python. (which is either True or False) While graphql only...