Merge branch 'kp-add-graphql-full-config-support' into 'master'
Add support for second `config` param in GraphQL wrapper lib See merge request gitlab-org/gitlab-ce!28705
This commit is contained in:
commit
64d13d5a8c
1 changed files with 4 additions and 4 deletions
|
@ -3,12 +3,12 @@ import { InMemoryCache } from 'apollo-cache-inmemory';
|
|||
import { createUploadLink } from 'apollo-upload-client';
|
||||
import csrf from '~/lib/utils/csrf';
|
||||
|
||||
export default (resolvers = {}, baseUrl = '') => {
|
||||
export default (resolvers = {}, config = {}) => {
|
||||
let uri = `${gon.relative_url_root}/api/graphql`;
|
||||
|
||||
if (baseUrl) {
|
||||
if (config.baseUrl) {
|
||||
// Prepend baseUrl and ensure that `///` are replaced with `/`
|
||||
uri = `${baseUrl}${uri}`.replace(/\/{3,}/g, '/');
|
||||
uri = `${config.baseUrl}${uri}`.replace(/\/{3,}/g, '/');
|
||||
}
|
||||
|
||||
return new ApolloClient({
|
||||
|
@ -18,7 +18,7 @@ export default (resolvers = {}, baseUrl = '') => {
|
|||
[csrf.headerKey]: csrf.token,
|
||||
},
|
||||
}),
|
||||
cache: new InMemoryCache(),
|
||||
cache: new InMemoryCache(config.cacheConfig),
|
||||
resolvers,
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue