Convert a result to primitive values.
(self, obj: Any, unstructure_as: Any)
| 468 | return await asyncify(self._converter.structure, obj, cl) |
| 469 | |
| 470 | async def unstructure(self, obj: Any, unstructure_as: Any) -> Awaitable[Any]: |
| 471 | """Convert a result to primitive values.""" |
| 472 | return await asyncify(self._converter.unstructure, obj, unstructure_as) |
| 473 | |
| 474 | def get_object(self, name: str) -> ObjectType: |
| 475 | """Get the object type definition for the given name.""" |
no outgoing calls