Thiago Bellini Ribeiro

Results 257 comments of Thiago Bellini Ribeiro

This issue is the same as https://github.com/strawberry-graphql/strawberry-graphql-django/issues/340 . This is happening because the optimizer currently is skipping any nested connections: https://github.com/strawberry-graphql/strawberry-graphql-django/blob/main/strawberry_django/optimizer.py#L320C29-L320C29 I'll try to create a meta issue about this...

@jlgonzalez-martinez as I mentioned [in this comment](https://github.com/strawberry-graphql/strawberry-graphql-django/issues/340#issuecomment-1692339337), I just noticed that you are also doing a `prefetch_related` in the connection. For the reasons I mentioned there, can you test without...

> @bellini666 suggested this while on a call :D > > ```sql > WITH numbered_rows AS ( > SELECT > "_FilmToSpecies"."A" AS "_prefetch_related_val_a_id", > "Species"."id", > "Species"."name", > ROW_NUMBER() OVER...

Hey @Carlisle345748, Hrm, that's interesting. It is actually the first time I see someone only wanting to query the `totalCount` and not the `edges` =P I do understand your use...

Hey @tony , Thanks for bringing this up. I want to use [autopub](https://github.com/autopub/autopub) for this, to make releases work the same way as they do on https://github.com/strawberry-graphql/strawberry, but I was...

> Does autopub's [AGPL license](https://github.com/autopub/autopub/blob/main/LICENSE) give you any pause? What do you mean?

Oh, I see. Not sure if that applies to something used in CI, but if it does, it is actually something to think about in strawberry itself. cc @patrick91 what...

Hey @diesieben07 . Thanks for trying to help with this :) Left me know if you need any help with that. Either ping me here or on our discord community

Thanks @diesieben07 :) Will take a look at it very soon!

Hey @Hnagzhi , Actually it is possible, you should use filters in the mutation as is explained here: https://strawberry-graphql.github.io/strawberry-graphql-django/guide/mutations/#filtering Looking at the doc now I understand that it can be...