* add twenty icon * rest api calls for company * check if company exists * refacto * person/company saved call * gql codegen init * type defs * build fix * DB calls with gql codegen and apollo integration
39 lines
1005 B
TypeScript
39 lines
1005 B
TypeScript
import {
|
|
CompanyInput,
|
|
CreateCompanyResponse,
|
|
FindCompanyResponse,
|
|
} from '~/db/types/company.types';
|
|
import { Company, CompanyFilterInput } from '~/generated/graphql';
|
|
import { CREATE_COMPANY } from '~/graphql/company/mutations';
|
|
import { FIND_COMPANY } from '~/graphql/company/queries';
|
|
|
|
import { callMutation, callQuery } from '../utils/requestDb';
|
|
|
|
export const fetchCompany = async (
|
|
companyfilerInput: CompanyFilterInput,
|
|
): Promise<Company | null> => {
|
|
const data = await callQuery<FindCompanyResponse>(FIND_COMPANY, {
|
|
filter: {
|
|
...companyfilerInput,
|
|
},
|
|
});
|
|
if (data?.companies.edges) {
|
|
return data?.companies.edges.length > 0
|
|
? data?.companies.edges[0].node
|
|
: null;
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export const createCompany = async (
|
|
company: CompanyInput,
|
|
): Promise<string | null> => {
|
|
const data = await callMutation<CreateCompanyResponse>(CREATE_COMPANY, {
|
|
input: company,
|
|
});
|
|
if (data) {
|
|
return data.createCompany.id;
|
|
}
|
|
return null;
|
|
};
|