(username: string)
| 8 | export class Fetcher { |
| 9 | private readonly username: string; |
| 10 | constructor(username: string) { |
| 11 | this.username = username; |
| 12 | } |
| 13 | |
| 14 | private getGraphQLQuery(from: string, to: string) { |
| 15 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected