- add sync email onboarding step - refactor calendar and email visibility enums - add a new table `keyValuePair` in `core` schema - add a new resolved boolean field `skipSyncEmail` in current user https://github.com/twentyhq/twenty/assets/29927851/de791475-5bfe-47f9-8e90-76c349fba56f
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const SKIP_SYNC_EMAIL_ONBOARDING_STEP = gql`
|
|
mutation SkipSyncEmailOnboardingStep {
|
|
skipSyncEmailOnboardingStep {
|
|
success
|
|
}
|
|
}
|
|
`;
|