(g: any)
| 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 | |
| 345 | interface ImpersonationAuthenticated { |
| 346 | authClaims: any; |
no outgoing calls
no test coverage detected
searching dependent graphs…