(self, t: GraphQLInterfaceType)
| 1006 | return t.name |
| 1007 | |
| 1008 | def render_head(self, t: GraphQLInterfaceType) -> str: |
| 1009 | return f"@runtime_checkable\nclass {t.name}(Protocol):" |
| 1010 | |
| 1011 | @joiner |
| 1012 | def render(self, t: GraphQLInterfaceType) -> Iterator[str]: |