(options: QueryOptions<OperationVariables>)
| 145 | } |
| 146 | |
| 147 | query(options: QueryOptions<OperationVariables>) { |
| 148 | return this.client.query(options).catch(error => { |
| 149 | throw new APIError(error.message, 500, 'GitHub'); |
| 150 | }); |
| 151 | } |
| 152 | |
| 153 | async mutate(options: MutationOptions<OperationVariables>) { |
| 154 | try { |
no outgoing calls