constructor()

in packages/gitlab-api-client/src/DefaultGitLabClient.ts [45:52]


  constructor(config: DefaultGitLabConfig) {
    this.#baseUrl = config.baseUrl;
    this.#httpHeaders = config.httpHeaders || {};
    this.#auth = config.auth || NOOP_AUTH_HEADERS_PROVIDER;

    const graphqlUrl = joinPaths(this.#baseUrl, 'api', 'graphql');
    this.#graphqlClient = new GraphQLClient(graphqlUrl);
  }