fix: missing client query (#524)
This commit is contained in:
@ -1 +1,2 @@
|
|||||||
export * from './index';
|
export * from './select';
|
||||||
|
export * from './update';
|
||||||
|
|||||||
10
front/src/modules/auth/services/select.ts
Normal file
10
front/src/modules/auth/services/select.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { gql } from '@apollo/client';
|
||||||
|
|
||||||
|
export const GET_CLIENT_CONFIG = gql`
|
||||||
|
query GetClientConfig {
|
||||||
|
clientConfig {
|
||||||
|
display_google_login
|
||||||
|
prefill_login_with_seed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
Reference in New Issue
Block a user