Thiago Bellini Ribeiro

Results 256 comments of Thiago Bellini Ribeiro

@fireteam99 actually you should write that like this: ```python @strawberry.django.type(AbstractDjangoModel, is_interface=True) class MyInterface: card: "CardNode" @strawberry.django.type(Card) class CardNode: name: auto ```

@fireteam99 sorry, in a hurry I wrote it wrong. The model should be passed as the first argument to the `strawberry.django.type` function. I edited my response with the correct solution

Hi @bbrowning918 , O sorry, that issue is in b2 actually (I got confused with `channels` itself, which is `b1`)

Hi @carltongibson , I'm running this under ASGI, it works both with `runserver` using daphne and also when running gunicorn with uvicorn worker. I mentioned this in [this PR](https://github.com/django/channels_redis/pull/329) which...

Hi @carltongibson , The test case you wrote for https://github.com/django/channels_redis/pull/329 should also trigger this when using the core layer instead of the pubsub If not, I can try to create...

When will this get merged? The warning is very annoying...

Hey @patrick91 and @radix , If I'm understanding the issue correctly, it is on how to tell which type of a union the object is if it isn't actually an...

> hi eloff! I think this is because `strawberry_django_plus` doesn't have a mypy plugin yet, maybe we should add one, or add support for it in our plugin thinking >...

> @bellini666 this is a really nice relay implementation! However I think that explicitly declaring connections is better than automatically providing them! Thank you! :) What do you mean specifically...

@aryaniyaps ohhh, I see what you mean now. The idea of the `input_mutation` was to provide a shortcut for that, but if that isn't the desire of the user, he...