9f6a6c3282
- 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
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
// This query cannot be put in the graphQL folder because it cannot be generated by the graphQL codegen.
|
|
import { gql } from '@apollo/client';
|
|
|
|
export const GET_CURRENT_USER = gql`
|
|
query GetCurrentUser {
|
|
currentUser {
|
|
...UserQueryFragment
|
|
}
|
|
}
|
|
`;
|