Commit 97678c09 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'kp-add-base-url-support-graphql' into 'master'

Add support for baseUrl in ApolloClient instance within GraphQL helper

See merge request gitlab-org/gitlab-ce!27657
parents d026deb2 8e808bc2
...@@ -3,10 +3,17 @@ import { InMemoryCache } from 'apollo-cache-inmemory'; ...@@ -3,10 +3,17 @@ import { InMemoryCache } from 'apollo-cache-inmemory';
import { createUploadLink } from 'apollo-upload-client'; import { createUploadLink } from 'apollo-upload-client';
import csrf from '~/lib/utils/csrf'; import csrf from '~/lib/utils/csrf';
export default (resolvers = {}) => export default (resolvers = {}, baseUrl = '') => {
new ApolloClient({ let uri = `${gon.relative_url_root}/api/graphql`;
if (baseUrl) {
// Prepend baseUrl and ensure that `///` are replaced with `/`
uri = `${baseUrl}${uri}`.replace(/\/{3,}/g, '/');
}
return new ApolloClient({
link: createUploadLink({ link: createUploadLink({
uri: `${gon.relative_url_root}/api/graphql`, uri,
headers: { headers: {
[csrf.headerKey]: csrf.token, [csrf.headerKey]: csrf.token,
}, },
...@@ -14,3 +21,4 @@ export default (resolvers = {}) => ...@@ -14,3 +21,4 @@ export default (resolvers = {}) =>
cache: new InMemoryCache(), cache: new InMemoryCache(),
resolvers, resolvers,
}); });
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment