Rename mutation maximum affected records (#6042)
As per my last comment on https://github.com/twentyhq/twenty/pull/6039, we decided to rename this var
This commit is contained in:
@ -32,7 +32,7 @@ export type Analytics = {
|
|||||||
|
|
||||||
export type ApiConfig = {
|
export type ApiConfig = {
|
||||||
__typename?: 'ApiConfig';
|
__typename?: 'ApiConfig';
|
||||||
mutationMaximumRecordAffected: Scalars['Float'];
|
mutationMaximumAffectedRecords: Scalars['Float'];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ApiKeyToken = {
|
export type ApiKeyToken = {
|
||||||
@ -1235,7 +1235,7 @@ export type UpdateBillingSubscriptionMutation = { __typename?: 'Mutation', updat
|
|||||||
export type GetClientConfigQueryVariables = Exact<{ [key: string]: never; }>;
|
export type GetClientConfigQueryVariables = Exact<{ [key: string]: never; }>;
|
||||||
|
|
||||||
|
|
||||||
export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typename?: 'ClientConfig', signInPrefilled: boolean, signUpDisabled: boolean, debugMode: boolean, chromeExtensionId?: string | null, authProviders: { __typename?: 'AuthProviders', google: boolean, password: boolean, microsoft: boolean }, billing: { __typename?: 'Billing', isBillingEnabled: boolean, billingUrl?: string | null, billingFreeTrialDurationInDays?: number | null }, telemetry: { __typename?: 'Telemetry', enabled: boolean }, support: { __typename?: 'Support', supportDriver: string, supportFrontChatId?: string | null }, sentry: { __typename?: 'Sentry', dsn?: string | null, environment?: string | null, release?: string | null }, captcha: { __typename?: 'Captcha', provider?: CaptchaDriverType | null, siteKey?: string | null }, api: { __typename?: 'ApiConfig', mutationMaximumRecordAffected: number } } };
|
export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typename?: 'ClientConfig', signInPrefilled: boolean, signUpDisabled: boolean, debugMode: boolean, chromeExtensionId?: string | null, authProviders: { __typename?: 'AuthProviders', google: boolean, password: boolean, microsoft: boolean }, billing: { __typename?: 'Billing', isBillingEnabled: boolean, billingUrl?: string | null, billingFreeTrialDurationInDays?: number | null }, telemetry: { __typename?: 'Telemetry', enabled: boolean }, support: { __typename?: 'Support', supportDriver: string, supportFrontChatId?: string | null }, sentry: { __typename?: 'Sentry', dsn?: string | null, environment?: string | null, release?: string | null }, captcha: { __typename?: 'Captcha', provider?: CaptchaDriverType | null, siteKey?: string | null }, api: { __typename?: 'ApiConfig', mutationMaximumAffectedRecords: number } } };
|
||||||
|
|
||||||
export type SkipSyncEmailOnboardingStepMutationVariables = Exact<{ [key: string]: never; }>;
|
export type SkipSyncEmailOnboardingStepMutationVariables = Exact<{ [key: string]: never; }>;
|
||||||
|
|
||||||
@ -2362,7 +2362,7 @@ export const GetClientConfigDocument = gql`
|
|||||||
siteKey
|
siteKey
|
||||||
}
|
}
|
||||||
api {
|
api {
|
||||||
mutationMaximumRecordAffected
|
mutationMaximumAffectedRecords
|
||||||
}
|
}
|
||||||
chromeExtensionId
|
chromeExtensionId
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
import { useEffect } from 'react';
|
import { useEffect } from 'react';
|
||||||
import { useRecoilState, useSetRecoilState } from 'recoil';
|
import { useRecoilState, useSetRecoilState } from 'recoil';
|
||||||
|
|
||||||
|
import { apiConfigState } from '@/client-config/states/apiConfigState';
|
||||||
import { authProvidersState } from '@/client-config/states/authProvidersState';
|
import { authProvidersState } from '@/client-config/states/authProvidersState';
|
||||||
import { billingState } from '@/client-config/states/billingState';
|
import { billingState } from '@/client-config/states/billingState';
|
||||||
import { captchaProviderState } from '@/client-config/states/captchaProviderState';
|
import { captchaProviderState } from '@/client-config/states/captchaProviderState';
|
||||||
@ -35,6 +36,8 @@ export const ClientConfigProviderEffect = () => {
|
|||||||
|
|
||||||
const setChromeExtensionId = useSetRecoilState(chromeExtensionIdState);
|
const setChromeExtensionId = useSetRecoilState(chromeExtensionIdState);
|
||||||
|
|
||||||
|
const setApiConfig = useSetRecoilState(apiConfigState);
|
||||||
|
|
||||||
const { data, loading } = useGetClientConfigQuery({
|
const { data, loading } = useGetClientConfigQuery({
|
||||||
skip: isClientConfigLoaded,
|
skip: isClientConfigLoaded,
|
||||||
});
|
});
|
||||||
@ -68,6 +71,7 @@ export const ClientConfigProviderEffect = () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
setChromeExtensionId(data?.clientConfig?.chromeExtensionId);
|
setChromeExtensionId(data?.clientConfig?.chromeExtensionId);
|
||||||
|
setApiConfig(data?.clientConfig?.api);
|
||||||
}
|
}
|
||||||
}, [
|
}, [
|
||||||
data,
|
data,
|
||||||
@ -83,6 +87,7 @@ export const ClientConfigProviderEffect = () => {
|
|||||||
setIsClientConfigLoaded,
|
setIsClientConfigLoaded,
|
||||||
setCaptchaProvider,
|
setCaptchaProvider,
|
||||||
setChromeExtensionId,
|
setChromeExtensionId,
|
||||||
|
setApiConfig,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return <></>;
|
return <></>;
|
||||||
|
|||||||
@ -33,7 +33,7 @@ export const GET_CLIENT_CONFIG = gql`
|
|||||||
siteKey
|
siteKey
|
||||||
}
|
}
|
||||||
api {
|
api {
|
||||||
mutationMaximumRecordAffected
|
mutationMaximumAffectedRecords
|
||||||
}
|
}
|
||||||
chromeExtensionId
|
chromeExtensionId
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { createState } from 'twenty-ui';
|
||||||
|
|
||||||
|
import { ApiConfig } from '~/generated/graphql';
|
||||||
|
|
||||||
|
export const apiConfigState = createState<ApiConfig | null>({
|
||||||
|
key: 'apiConfigState',
|
||||||
|
defaultValue: null,
|
||||||
|
});
|
||||||
@ -70,6 +70,6 @@ SIGN_IN_PREFILLED=true
|
|||||||
# CAPTCHA_SECRET_KEY=
|
# CAPTCHA_SECRET_KEY=
|
||||||
# API_RATE_LIMITING_TTL=
|
# API_RATE_LIMITING_TTL=
|
||||||
# API_RATE_LIMITING_LIMIT=
|
# API_RATE_LIMITING_LIMIT=
|
||||||
# MUTATION_MAXIMUM_RECORD_AFFECTED=100
|
# MUTATION_MAXIMUM_AFFECTED_RECORDS=100
|
||||||
# CHROME_EXTENSION_ID=bggmipldbceihilonnbpgoeclgbkblkp
|
# CHROME_EXTENSION_ID=bggmipldbceihilonnbpgoeclgbkblkp
|
||||||
# PG_SSL_ALLOW_SELF_SIGNED=true
|
# PG_SSL_ALLOW_SELF_SIGNED=true
|
||||||
|
|||||||
@ -23,4 +23,4 @@ FILE_TOKEN_SECRET=secret_file_token
|
|||||||
# MESSAGING_PROVIDER_GMAIL_ENABLED=false
|
# MESSAGING_PROVIDER_GMAIL_ENABLED=false
|
||||||
# STORAGE_TYPE=local
|
# STORAGE_TYPE=local
|
||||||
# STORAGE_LOCAL_PATH=.local-storage
|
# STORAGE_LOCAL_PATH=.local-storage
|
||||||
# MUTATION_MAXIMUM_RECORD_AFFECTED=100
|
# MUTATION_MAXIMUM_AFFECTED_RECORDS=100
|
||||||
|
|||||||
@ -432,7 +432,7 @@ export class WorkspaceQueryRunnerService {
|
|||||||
args.filter?.id?.in?.forEach((id) => assertIsValidUuid(id));
|
args.filter?.id?.in?.forEach((id) => assertIsValidUuid(id));
|
||||||
|
|
||||||
const maximumRecordAffected = this.environmentService.get(
|
const maximumRecordAffected = this.environmentService.get(
|
||||||
'MUTATION_MAXIMUM_RECORD_AFFECTED',
|
'MUTATION_MAXIMUM_AFFECTED_RECORDS',
|
||||||
);
|
);
|
||||||
const query = await this.workspaceQueryBuilderFactory.updateMany(args, {
|
const query = await this.workspaceQueryBuilderFactory.updateMany(args, {
|
||||||
...options,
|
...options,
|
||||||
@ -484,7 +484,7 @@ export class WorkspaceQueryRunnerService {
|
|||||||
assertMutationNotOnRemoteObject(objectMetadataItem);
|
assertMutationNotOnRemoteObject(objectMetadataItem);
|
||||||
|
|
||||||
const maximumRecordAffected = this.environmentService.get(
|
const maximumRecordAffected = this.environmentService.get(
|
||||||
'MUTATION_MAXIMUM_RECORD_AFFECTED',
|
'MUTATION_MAXIMUM_AFFECTED_RECORDS',
|
||||||
);
|
);
|
||||||
const query = await this.workspaceQueryBuilderFactory.deleteMany(args, {
|
const query = await this.workspaceQueryBuilderFactory.deleteMany(args, {
|
||||||
...options,
|
...options,
|
||||||
@ -691,7 +691,7 @@ export class WorkspaceQueryRunnerService {
|
|||||||
errors,
|
errors,
|
||||||
{
|
{
|
||||||
atMost: this.environmentService.get(
|
atMost: this.environmentService.get(
|
||||||
'MUTATION_MAXIMUM_RECORD_AFFECTED',
|
'MUTATION_MAXIMUM_AFFECTED_RECORDS',
|
||||||
),
|
),
|
||||||
} satisfies PgGraphQLConfig,
|
} satisfies PgGraphQLConfig,
|
||||||
);
|
);
|
||||||
|
|||||||
@ -68,7 +68,7 @@ class Captcha {
|
|||||||
@ObjectType()
|
@ObjectType()
|
||||||
class ApiConfig {
|
class ApiConfig {
|
||||||
@Field(() => Number, { nullable: false })
|
@Field(() => Number, { nullable: false })
|
||||||
mutationMaximumRecordAffected: number;
|
mutationMaximumAffectedRecords: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ObjectType()
|
@ObjectType()
|
||||||
|
|||||||
@ -47,8 +47,8 @@ export class ClientConfigResolver {
|
|||||||
},
|
},
|
||||||
chromeExtensionId: this.environmentService.get('CHROME_EXTENSION_ID'),
|
chromeExtensionId: this.environmentService.get('CHROME_EXTENSION_ID'),
|
||||||
api: {
|
api: {
|
||||||
mutationMaximumRecordAffected: this.environmentService.get(
|
mutationMaximumAffectedRecords: this.environmentService.get(
|
||||||
'MUTATION_MAXIMUM_RECORD_AFFECTED',
|
'MUTATION_MAXIMUM_AFFECTED_RECORDS',
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@ -324,7 +324,7 @@ export class EnvironmentVariables {
|
|||||||
@CastToPositiveNumber()
|
@CastToPositiveNumber()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
MUTATION_MAXIMUM_RECORD_AFFECTED = 100;
|
MUTATION_MAXIMUM_AFFECTED_RECORDS = 100;
|
||||||
|
|
||||||
REDIS_HOST = '127.0.0.1';
|
REDIS_HOST = '127.0.0.1';
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user