(buildForType ? : string)
| 43 | } |
| 44 | |
| 45 | getDocuments(buildForType ? : string): DocumentSectionInterface[] { |
| 46 | |
| 47 | const code = this.code(buildForType); |
| 48 | |
| 49 | if (code) |
| 50 | return [ |
| 51 | new DocumentSection('GraphQL Schema definition', html.code(code)) |
| 52 | ]; |
| 53 | |
| 54 | return []; |
| 55 | } |
| 56 | |
| 57 | code(buildForType ? : string): string { |
| 58 |