Vitaliy Kucheryaviy

Results 245 comments of Vitaliy Kucheryaviy

@nhi-vanye you can do this like this - put into `response` a union of two schemas: ```Python class SimpleProfile(Schema): id: int email: str class PrivateProfile(Schema): id: int email: str private_field:...

Hi @kristian-lindin Thank you for PR - could you also make a test case that covers this ?

@arpanpreneur sometimes this error means some exceptions during import (or circular imports) you can try skip check with setting `NINJA_SKIP_REGISTRY=on` enviroment see example here how it's done in django ninja...

Hi @radiac @arnoan I love nanodjango idea and was brainstorming something similar for a while to be built in into Ninja... (there is actually a great demand for simple single...

Hi @brendenwest Could you show how you initiated your `api` ? api = Router() ? api = NinjaAPI ? can you show more reproducible code