Spaces:
Build error
Build error
twenty / packages /twenty-server /src /engine /api /graphql /graphql-query-runner /utils /check-string-is-database-event-action.ts
| import { DatabaseEventAction } from 'src/engine/api/graphql/graphql-query-runner/enums/database-event-action'; | |
| export const checkStringIsDatabaseEventAction = ( | |
| value: string, | |
| ): value is DatabaseEventAction => { | |
| return Object.values(DatabaseEventAction).includes( | |
| value as DatabaseEventAction, | |
| ); | |
| }; | |