Files
twenty_crm/front/src/modules/client-config/graphql/queries/getClientConfig.ts
bosiraphael dda911fea7 Remove three old env variables (#2297)
* remove three old env variables IS_DATA_MODEL_SETTINGS_ENABLED IS_DEVELOPERS_SETTINGS_ENABLED FLEXIBLE_BACKEND_ENABLED

* Fix database:reset script

* Removing unused variable

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2023-10-31 13:15:24 +01:00

23 lines
379 B
TypeScript

import { gql } from '@apollo/client';
export const GET_CLIENT_CONFIG = gql`
query GetClientConfig {
clientConfig {
authProviders {
google
password
}
signInPrefilled
debugMode
telemetry {
enabled
anonymizationEnabled
}
support {
supportDriver
supportFrontChatId
}
}
}
`;