(errorMessage: string)
| 604 | |
| 605 | /** Visible for Testing */ |
| 606 | export function isSchemaDepthError(errorMessage: string): boolean { |
| 607 | return errorMessage.includes('maximum schema depth exceeded'); |
| 608 | } |
| 609 | |
| 610 | export function isInvalidArgumentError(errorMessage: string): boolean { |
| 611 | return errorMessage.includes('Request contains an invalid argument'); |
no outgoing calls
no test coverage detected