summaryrefslogtreecommitdiff
path: root/spec/frontend_integration/test_helpers/mock_server/graphql.js
blob: d4ee7c02839e6ebc45f97c9d27a74b8284098dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { buildSchema, graphql } from 'graphql';
import { memoize } from 'lodash';

// eslint-disable-next-line global-require
const getGraphqlSchema = () => require('../../../../tmp/tests/graphql/gitlab_schema.graphql');

const graphqlResolvers = {
  project({ fullPath }, schema) {
    const result = schema.projects.findBy({ path_with_namespace: fullPath });
    const userPermission = schema.db.userPermissions[0];

    return {
      ...result.attrs,
      userPermissions: {
        ...userPermission,
      },
    };
  },
};
const buildGraphqlSchema = memoize(() => buildSchema(getGraphqlSchema().loc.source.body));

export const graphqlQuery = (query, variables, schema) =>
  graphql(buildGraphqlSchema(), query, graphqlResolvers, schema, variables);