(type: SchemaType)
| 270 | } |
| 271 | |
| 272 | fields(type: SchemaType): string { |
| 273 | |
| 274 | return html.line('') + |
| 275 | type.fields |
| 276 | .map(field => this.field(field)) |
| 277 | .join(html.line('')); |
| 278 | } |
| 279 | |
| 280 | inputObject(type: SchemaType): string { |
| 281 |
no test coverage detected