From fa6adedc42e9c6ec39cc30df16b54900c220b094 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 20 Dec 2021 00:15:20 +0100 Subject: refactor: rewrite types and services I was repeating myself a lot in services. So I rewrited the different functions to improve readability and I extracted some formatting functions to put them in utils. I also rewrited/reorganized some types to keep consistent names. --- src/services/graphql/client.ts | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/services/graphql/client.ts (limited to 'src/services/graphql/client.ts') diff --git a/src/services/graphql/client.ts b/src/services/graphql/client.ts deleted file mode 100644 index a58441f..0000000 --- a/src/services/graphql/client.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { GraphQLClient } from 'graphql-request'; - -export const getGraphQLClient = () => { - const apiUrl: string = process.env.NEXT_PUBLIC_GRAPHQL_API || ''; - - if (!apiUrl) throw new Error('API URL not defined.'); - - const graphQLClient = new GraphQLClient(apiUrl); - - return graphQLClient; -}; -- cgit v1.2.3