Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
6a57552a
Commit
6a57552a
authored
May 24, 2019
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for second `config` param
parent
43b3d304
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
app/assets/javascripts/lib/graphql.js
app/assets/javascripts/lib/graphql.js
+4
-4
No files found.
app/assets/javascripts/lib/graphql.js
View file @
6a57552a
...
...
@@ -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
,
});
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment