(g: any)
| 339 | } |
| 340 | |
| 341 | export const isGraphQLResponse = (g: any): g is GraphqlResponse => !!g.data || !!g.errors; |
| 342 | export const isGraphQLResponseError = (g: any): g is GraphqlResponseError => |
| 343 | !!g.error?.message || !!g.message; |
| 344 |
no outgoing calls
no test coverage detected
searching dependent graphs…