Thiago Bellini Ribeiro

Results 256 comments of Thiago Bellini Ribeiro

Hey @ccsv , The issue here is that using `input` with `auto` will mark that field as mandatory. You probably need to pass `partial=True` to the `input` to make sure...

@ccsv if I understood your code correctly, based on the way you declared the mutation at the gql mutation as `address: {id: $address}}`, you should be passing only the `id`...

@ccsv I may be failing to understand what you want to actually achieve here, but your errors are not bugs but actual errors because they don't match the schema you...

Hi @hiporox , I like this idea! Would you like to try to implement it and open a PR for us?

Hi @sisocobacho , What exactly are you trying to override? You can probably override the field to call your own function instead of the ones the current ones call for...

@patrick91 any suggestions on where to add configurations for @noelleleigh to implement? Or maybe we should do that first in strawberry so that we can use it here?

> or we could decide that for django we can use a "global" configuration, like other framework do. What do you think? /cc @bellini666 I like the idea! :) We...

Hey @patrick91 , Although I like your idea, I think we can probably do even better. That `pk` gets created [in here](https://github.com/strawberry-graphql/strawberry-graphql-django/blob/main/strawberry_django/filters.py#L156). We can probably just change the `strawberry.ID` to...

The issue here is that django needs to be set up to be able to generate the schema. You can probably copy the management command I have in strawberry-django-plus: https://github.com/blb-ventures/strawberry-django-plus/blob/main/strawberry_django_plus/management/commands/export_schema.py...

Hi @insomniac34 , That's actually correct. The source is `None` because you are resolving a field `contacts` in the root query, which has no parent and thus is `None` For...