messaging: gmail folder backfill (#21753)

demo


https://github.com/user-attachments/assets/a157cee1-a8fa-4050-af1b-c31a83fb75da

/closes #17095


<!-- This is an auto-generated description by cubic. -->
<a
href="https://cubic.dev/pr/twentyhq/twenty/pull/21753?utm_source=github"
target="_blank" rel="noopener noreferrer"
data-no-image-dialog="true"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source
media="(prefers-color-scheme: light)"
srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img
alt="Review in cubic"
src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a>
<!-- End of auto-generated description by cubic. -->
This commit is contained in:
neo773
2026-06-19 05:29:35 +05:30
committed by GitHub
parent d88eb6c16b
commit 616d58bc7e
21 changed files with 223 additions and 56 deletions
@@ -2943,6 +2943,7 @@ type MessageFolder {
enum MessageFolderPendingSyncAction {
FOLDER_DELETION
FOLDER_IMPORT
NONE
}
@@ -4374,7 +4375,7 @@ input UpdateMessageFolderInput {
}
input UpdateMessageFolderInputUpdates {
isSynced: Boolean
isSynced: Boolean!
}
input UpdateMessageFoldersInput {
@@ -2596,7 +2596,7 @@ export interface MessageFolder {
__typename: 'MessageFolder'
}
export type MessageFolderPendingSyncAction = 'FOLDER_DELETION' | 'NONE'
export type MessageFolderPendingSyncAction = 'FOLDER_DELETION' | 'FOLDER_IMPORT' | 'NONE'
export interface CollectionHash {
collectionName: AllMetadataName
@@ -6467,7 +6467,7 @@ id: Scalars['UUID']}
export interface UpdateMessageFolderInput {id: Scalars['UUID'],update: UpdateMessageFolderInputUpdates}
export interface UpdateMessageFolderInputUpdates {isSynced?: (Scalars['Boolean'] | null)}
export interface UpdateMessageFolderInputUpdates {isSynced: Scalars['Boolean']}
export interface UpdateMessageFoldersInput {ids: Scalars['UUID'][],update: UpdateMessageFolderInputUpdates}
@@ -9197,6 +9197,7 @@ export const enumCalendarChannelContactAutoCreationPolicy = {
export const enumMessageFolderPendingSyncAction = {
FOLDER_DELETION: 'FOLDER_DELETION' as const,
FOLDER_IMPORT: 'FOLDER_IMPORT' as const,
NONE: 'NONE' as const
}