23 lines
379 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`;
|