Bogdan Kortnov
Bogdan Kortnov
@sschuberth I have actually implemented an identical mechanism about a year ago in Python and Neo4J. From my experience, aside from it being cool and all, you need a very...
Any progress on that? It seems the PR is open and ready but no one approves it :(
I am having the same issue with database calls. In this case I either resolve the whole database model with joins from top level (loosing the dynamic schema resolution in...
> @Aponace Can you use async resolvers instead? 🤔 No quite possible (for me) as the database handler is being used by hundreds of functions outside of strawberry. That would...
After some testing I have the same issue as well. Just a workaround for anyone stumbling upon it: For non lists return `Annotated[C, ...]` For lists return `List[Annotated["C", ...]]`