(self, t: GraphQLInputObjectType)
| 986 | return f"@typecheck\n@dataclass(slots=True)\n{super().render_head(t)}" |
| 987 | |
| 988 | def fields(self, t: GraphQLInputObjectType) -> Iterator[_InputField]: |
| 989 | return ( |
| 990 | _InputField(self.ctx, *args) |
| 991 | for args in cast(GraphQLInputFieldMap, t.fields).items() |
| 992 | ) |
| 993 | |
| 994 | |
| 995 | @dataclass |
nothing calls this directly
no test coverage detected