twenty / packages /twenty-server /src /engine /api /graphql /graphql-query-runner /utils /check-string-is-database-event-action.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
312 Bytes
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,
);
};