(arg: InputValue)
| 147 | } |
| 148 | |
| 149 | argumentDescription(arg: InputValue): string[] { |
| 150 | |
| 151 | const desc = arg.description === null ? |
| 152 | '[' + html.highlight('Not documented') + ']' : arg.description; |
| 153 | |
| 154 | return this.description(html.highlight(arg.name) + ': ' + desc); |
| 155 | } |
| 156 | |
| 157 | argumentsDescription(fieldOrDirectives: Field | Directive): string[] { |
| 158 |
no test coverage detected