6a14b1c6d6
## 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
35 lines
867 B
TypeScript
35 lines
867 B
TypeScript
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
|
|
import { RecordGqlOperationSignature } from '@/object-record/graphql/types/RecordGqlOperationSignature';
|
|
|
|
export const CREATE_ONE_ACTIVITY_OPERATION_SIGNATURE: RecordGqlOperationSignature =
|
|
{
|
|
objectNameSingular: CoreObjectNameSingular.Activity,
|
|
variables: {},
|
|
fields: {
|
|
id: true,
|
|
__typename: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
author: {
|
|
id: true,
|
|
name: true,
|
|
__typename: true,
|
|
},
|
|
authorId: true,
|
|
assigneeId: true,
|
|
assignee: {
|
|
id: true,
|
|
name: true,
|
|
__typename: true,
|
|
},
|
|
comments: true,
|
|
attachments: true,
|
|
body: true,
|
|
title: true,
|
|
completedAt: true,
|
|
dueAt: true,
|
|
reminderAt: true,
|
|
type: true,
|
|
},
|
|
};
|