/ tests / fixtures / gqlClient.ts
gqlClient.ts
1  import { GraphQLClient } from 'graphql-request';
2  
3  export const gqlClient = new GraphQLClient('http://localhost:8080', {
4    headers: { Authorization: `Bearer 123` },
5  });