Gustavo Sverzut Barbieri

Results 146 comments of Gustavo Sverzut Barbieri

I still don't have time to look into this, as I said above it looks like a propagation to the parent selection list (where the fragment is being used). But...

I'm not sure it will be possible to autommatically serialize/load these types as they abuse some python protocols to make it easy to use (`__getattr__`, `__setattr__` and the likes). I'll...

Hi, did the above comment help? Do you still need support with this? Otherwise please close the issue :-)

@vavalomi nice request, I don't have much time to implement it atm, but if you do, please provide some tests as well (in this case it's not doctest, but regular...

yeah, SGQLC predates typing and I'll work on this later. In your example it's wrong, you can't `: Repository` as it's not what you get. You get a selection based...

Yeah, I know your pain. But you'll have to go with a `: Any` for the time being, better not to verify than verify it wrongly :-( As for 3,...

@YassineElbouchaibi yes, we just have runtime checking at the moment. The major issue is that the code is based on Metaclasses (thus, dynamic) and to make declaration easy (just define...

I never used pydantic's dataclasses... but there is one possible issue: GraphQL types does not always match 1:1 with the query result, since the query result may be a subset...

> The proposed code generator does not generate schema types. It generates dataclasses for queries. I.e., every query has its own classes. Does that address your concern? seems so, I'll...