fix: missing client query (#524)

This commit is contained in:
Jérémy M
2023-07-05 17:20:12 +02:00
committed by GitHub
parent 3db15929a5
commit 0b7a023f3d
2 changed files with 12 additions and 1 deletions

View File

@ -1 +1,2 @@
export * from './index';
export * from './select';
export * from './update';

View 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
}
}
`;