You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if there's a more suitable way of converting the resulting type to a dict. There is the __json_data__ field, which contains the response from the server, which does contain the baz field - is there a preferred way of doing this operation?
The text was updated successfully, but these errors were encountered:
simonrw
changed the title
Presenting Types as dictionaries does not include aliased fields.
Presenting Types as dictionaries does not include aliased fields
Aug 29, 2021
I have been hitting the same issue. Also it is worth to mention that json_data won't work with nested aliased fields. So, it returns the aliased fields for things only at the same level you're calling from.
With the operation
and basic schema:
when I perform a query against this, which returns
and try to convert the resulting type to dictionary:
the
bar
field is missing.I don't know if there's a more suitable way of converting the resulting type to a dict. There is the
__json_data__
field, which contains the response from the server, which does contain thebaz
field - is there a preferred way of doing this operation?The text was updated successfully, but these errors were encountered: