Fix tasks (#5199)
## Query depth deprecation I'm deprecating depth parameter in our graphql query / cache tooling. They were obsolete since we introduce the possibility to provide RecordGqlFields ## Refactor combinedFindManyRecordHook The hook can now take an array of operationSignatures ## Fix tasks issues Fix optimistic rendering issue. Note that we still haven't handle optimisticEffect on creation properly
This commit is contained in:
@ -3,4 +3,5 @@ export type BlocklistItem = {
|
||||
handle: string;
|
||||
workspaceMemberId: string;
|
||||
createdAt: string;
|
||||
__typename: 'BlocklistItem';
|
||||
};
|
||||
|
||||
@ -9,4 +9,5 @@ export type CalendarChannel = {
|
||||
isContactAutoCreationEnabled?: boolean;
|
||||
isSyncEnabled?: boolean;
|
||||
visibility: CalendarChannelVisibility;
|
||||
__typename: 'CalendarChannel';
|
||||
};
|
||||
|
||||
@ -13,4 +13,5 @@ export type ConnectedAccount = {
|
||||
authFailedAt: Date | null;
|
||||
messageChannels: MessageChannel[];
|
||||
calendarChannels: CalendarChannel[];
|
||||
__typename: 'ConnectedAccount';
|
||||
};
|
||||
|
||||
@ -7,4 +7,5 @@ export type MessageChannel = {
|
||||
isSyncEnabled: boolean;
|
||||
visibility: InboxSettingsVisibilityValue;
|
||||
syncStatus: string;
|
||||
__typename: 'MessageChannel';
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user