Is there a way to pass `Config` classes in to the ...
# ask-community
a
Is there a way to pass
Config
classes in to the GraphQL Python client? At first I tried using the
RunConfig
class, but that wasn't allowed. Then I just hardcoded
"ops": { "op_name": MyConfig }
but I got MyConfig is not JsonSerializable. So then I ended with
"ops: { "op_name": { "config_prop": MyConfig.config_prop }}