(type: SchemaType)
| 278 | } |
| 279 | |
| 280 | inputObject(type: SchemaType): string { |
| 281 | |
| 282 | return html.line(html.keyword('input') + ' ' + html.identifier(type) + ' {') + |
| 283 | this.inputValues(type.inputFields) + |
| 284 | html.line('}'); |
| 285 | } |
| 286 | |
| 287 | inputValues(inputValues: InputValue[]): string { |
| 288 | return inputValues |
no test coverage detected