Patrick Arminio
Patrick Arminio
ah, same issue as #3172, you're instantiating the extension yourself, but that's something that should be done by strawberry 😊 https://github.com/strawberry-graphql/strawberry/blob/main/strawberry/extensions/runner.py#L39-L48 maybe we should remove support for using instances of...
we definitely need to make the docs better and maybe put a warning when you pass an instance
@krispharper can you show us the error? I've made a reproduction for this: https://play.strawberry.rocks/?gist=482103631096241ca1a08f95aeed655a But to clarify, this behaviour is from [GraphQL core](https://github.com/graphql-python/graphql-core) and we don't have a lot of...
ahahah thanks for the question! > I've been using strawberry at work for a few months now and can't get these silly things out of my mind. > > *...
One note on this, we'll probably generate an empty method instead of what you wrote, as it won't be easy to generate something that's actually valid (and useful) ```python @strawberry.type...
@sansyrox here's a minimal reproduction: ```python import robyn import strawberry app = robyn.Robyn(__file__) @strawberry.type class Query: hello: str = strawberry.field(resolver=lambda: "Hello, world!") schema = strawberry.Schema(query=Query) @app.post("/graphql") async def handle_api_request(request: robyn.Request)...
@sansyrox can you show me your cli?
@leszekhanusz @andrewmcgivery I'd be happy to help with this :) If you need a backend for testing this I can make a an example with Strawberry (I have a PR...
@pfcodes can you still reproduce it?
@stygmate Thiago is working on adding support for this, hopefully we get it soon 😊