summaryrefslogtreecommitdiffstats
path: root/src/services/graphql/client.ts
blob: a58441f6bf3fe60c8a92a1dc878d07e7797bd017 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
};