## 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
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { RecordGqlOperationVariables } from '@/object-record/graphql/types/RecordGqlOperationVariables';
|
|
|
|
export const currentCompletedTaskQueryVariablesState =
|
|
atom<RecordGqlOperationVariables | null>({
|
|
default: null,
|
|
key: 'currentCompletedTaskQueryVariablesState',
|
|
});
|