Files
automatisch/packages/web/src/hooks/useAppAuthClient.ee.ts
2024-01-15 13:30:48 +01:00

30 lines
658 B
TypeScript

import { useLazyQuery } from '@apollo/client';
import { AppAuthClient } from 'types';
import * as React from 'react';
import { GET_APP_AUTH_CLIENT } from 'graphql/queries/get-app-auth-client.ee';
type QueryResponse = {
getAppAuthClient: AppAuthClient;
};
export default function useAppAuthClient(id?: string) {
const [getAppAuthClient, { data, loading }] =
useLazyQuery<QueryResponse>(GET_APP_AUTH_CLIENT);
const appAuthClient = data?.getAppAuthClient;
React.useEffect(
function fetchUponId() {
if (!id) return;
getAppAuthClient({ variables: { id } });
},
[id]
);
return {
appAuthClient,
loading,
};
}