Tochukwu

Results 87 comments of Tochukwu

@unode I’ve taken a look at the django-ninja export command [ninja/openapi/schema.py](https://github.com/vitalik/django-ninja/blob/master/ninja/openapi/schema.py) and it seems this computation is currently implemented as a utility function. Some of these functions were likely intended...

@vitalik alright, I will come up with a PR shortly

@vitalik Here is the PR https://github.com/vitalik/django-ninja/pull/1633, please let me know if thats okay or if you want something changed

@mnboos This is amazing, well done. But is there a written test for this feature?

@mnboos Thanks again for working on this feature. I haven’t yet had the time to fully review some of the features you introduced on the `mixin` approach, for example, `ordering`....

@mnboos I would like to see the PR

@Elixir-MeetThoriya you can make your API function by return paginated response by returning PaginatedResponseSchema instance ```python ... items = list(self.mode.objects.all() return PaginatedResponseSchema[CountrySchema](count=len(items), results=items, next=None, previous=None) ```