Thiago Bellini Ribeiro

Results 256 comments of Thiago Bellini Ribeiro

> If that sounds good to you, we (https://github.com/geops) would be happy to implement this! @zvyn sure, go ahead! :) Feel free to ping me on [discord](https://strawberry.rocks/discord) if you need...

@tokr-bit nice, looking forward to review the PR :) > However, it is possible to change the unique identifier, which is stored as self.key_attr in the DjangoCreateOrUpdateMutation class. Hardcoding to...

Hey @MichaelKim0407 , Hrm, maybe there's something extra that we can do here? contextvars will make sure that each context gets its own value for that, very similar to `threading.local`,...

Just a note in here when implementing this: An array field can contain another array field, so for example `ArrayField(CharField)` should generate `List[str]` and `ArrayField(ArrayField(CharField))` should generate `List[List[str]]` and so...

I have the same issue using python 3.11 packaged inside the official debian repositories. My `python3.11 --version` output is `Python 3.11.0+`

The official package from the current Debian Testing and Unstable (https://tracker.debian.org/pkg/python3.11) has this issue, and it is not using nightly builds. ``` ❯ which python3.11 /usr/bin/python3.11 ❯ dpkg -S /usr/bin/python3.11...

> um, it obviously is using nightly builds. You can tell by the version number! Just checked and you are right. It is not using the actual final but some...

Hi @capital-G , There's still a lot of improvements to be made to this lib indeed, specially regarding documentation. I'll answer some of your questions here: > why is there...

Hey @thclark and @sdobbelaere , First of all, as a former Graphene user myself, I want to agree with @sdobbelaere regarding strawberry being superior! Of course my opinion should be...

Hey @cngai , As I said on discord, I usually use [django-choices-field](https://github.com/bellini666/django-choices-field) which automatically integrates with strawberry: https://strawberry-graphql.github.io/strawberry-django/integrations/choices-field/, so I was not really aware of this =P I think your...