(graphql_attributes: list[dict[str, Any] | None])
| 199 | |
| 200 | |
| 201 | def as_rest_api_attributes_list(graphql_attributes: list[dict[str, Any] | None]) -> list[dict[str, Any] | None]: |
| 202 | return [as_rest_api_attributes(v) if isinstance(v, dict) else v for v in graphql_attributes] |
| 203 | |
| 204 | |
| 205 | class _ValuedAttribute(Attribute[T]): |
no test coverage detected
searching dependent graphs…