From a0d00743cbbdb77b27c1a3d5711407ffed5befac Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 20 Aug 2022 21:39:51 +0200 Subject: refactor(types): move and rename GraphQL types The api file in services was not really readable. So I move the types and I also rewrite a little the fetch function. I also rename most of the type to avoid conflict with preexisting types (like Node) and to keep consistency. --- src/services/graphql/contact.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/services/graphql/contact.ts') diff --git a/src/services/graphql/contact.ts b/src/services/graphql/contact.ts index 00c6ca2..de078b9 100644 --- a/src/services/graphql/contact.ts +++ b/src/services/graphql/contact.ts @@ -1,4 +1,5 @@ -import { fetchAPI, getAPIUrl, SendMailVars } from './api'; +import { SendMailInput } from '@ts/types/graphql/mutations'; +import { fetchAPI } from './api'; import { sendMailMutation } from './contact.mutation'; export type SentEmail = { @@ -12,12 +13,11 @@ export type SentEmail = { /** * Send an email using GraphQL API. * - * @param {sendMailVars} data - The mail data. + * @param {SendMailInput} data - The mail data. * @returns {Promise} The mutation response. */ -export const sendMail = async (data: SendMailVars): Promise => { +export const sendMail = async (data: SendMailInput): Promise => { const response = await fetchAPI({ - api: getAPIUrl(), query: sendMailMutation, variables: { ...data }, }); -- cgit v1.2.3