( message: string, extensions?: Record<string, unknown>, )
| 25 | extensions?: Record<string, unknown>, |
| 26 | ) => code("CYCLIC_TREE", message, extensions); |
| 27 | export const badRequest = ( |
| 28 | message: string, |
| 29 | extensions?: Record<string, unknown>, |
| 30 | ) => code(ApolloServerErrorCode.BAD_REQUEST, message, extensions); |
| 31 | export const invalidInvitationType = ( |
| 32 | message: string, |
| 33 | extensions?: Record<string, unknown>, |