(self, t: GraphQLObjectType)
| 1065 | return super().type_name(t) |
| 1066 | |
| 1067 | def fields(self, t: GraphQLObjectType) -> Iterator[_ObjectField]: |
| 1068 | return ( |
| 1069 | _ObjectField(self.ctx, *args, t) |
| 1070 | for args in cast(GraphQLFieldMap, t.fields).items() |
| 1071 | ) |
| 1072 | |
| 1073 | def render_head(self, t: GraphQLObjectType) -> str: |
| 1074 | return f"@typecheck\n{super().render_head(t)}" |
nothing calls this directly
no test coverage detected