This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Interface resolver issues with Pydantic schemas #1179
Labels
You can continue the conversation there. Go to discussion →
I was facing an issue using and defining an interface in GraphQL when used together with Pydantic. The solution I finally managed to wotk with will not scale very well (not elegantly nor pythonic IMO).
PS: using latest versions of Flask (3.0.3), Pydantic (2.7.1) and Ariadne (0.23.0).
The basic GraphQL:
Basic Pydantic schemas:
The interface resolver:
In my code, currently I generate only
MetadataBR
. But with the current definition of the Information model for Pydantic (where I define metadata being any class that can be evaluated to a base class and I can increase the number of possible classes in the future without adding new possible combinations to this field using Union). When the code reaches the resolver function,obj
for some reason comes with typeschemas.Metadata
and without thetype
field that is setted in the code.Somewhere inside Ariadne code, it is converting my code to another type because if in my resolver, after I fetch the information and before returning the values, I try to dump the types and values, they all come correctly (MetadataBR and with type field).
What I had to do to make it work was change my python model to:
If I increase the number of metadata sub models, I would need to keep adding to several Unions.. making it not so readable.
Not sure if I missed something, but would be nice to have that working.
Thanks
The text was updated successfully, but these errors were encountered: