debian-mirror-gitlab/app/assets/javascripts/ide/services/gql.js
2020-08-09 17:44:08 +05:30

21 lines
612 B
JavaScript

import { memoize } from 'lodash';
import createGqClient, { fetchPolicies } from '~/lib/graphql';
/**
* Returns a memoized client
*
* We defer creating the client so that importing this module does not cause any side-effects.
* Creating the client immediately caused issues with miragejs where the gql client uses the
* real fetch() instead of the shimmed one.
*/
const getClient = memoize(() =>
createGqClient(
{},
{
fetchPolicy: fetchPolicies.NO_CACHE,
},
),
);
// eslint-disable-next-line import/prefer-default-export
export const query = (...args) => getClient().query(...args);