aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/index.js
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-01-21 21:01:51 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-01-21 21:01:51 +0100
commit5374a74ecbd6a41719371b457ca1f876868c54c8 (patch)
tree348f1ca3c7469fe8c2a9c6ecd69ce0ef6b55b9b5 /webui/src/index.js
parentead3fdd07489c8945ecbd7de6675c4fd49c2877e (diff)
downloadgit-bug-5374a74ecbd6a41719371b457ca1f876868c54c8.tar.gz
webui: use the IntrospectionFragmentMatcher & update dependencies
Diffstat (limited to 'webui/src/index.js')
-rw-r--r--webui/src/index.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/webui/src/index.js b/webui/src/index.js
index f71e82f3..6f838c69 100644
--- a/webui/src/index.js
+++ b/webui/src/index.js
@@ -1,17 +1,27 @@
import ThemeProvider from '@material-ui/styles/ThemeProvider';
import { createMuiTheme } from '@material-ui/core/styles';
import ApolloClient from 'apollo-boost';
+import {
+ IntrospectionFragmentMatcher,
+ InMemoryCache,
+} from 'apollo-cache-inmemory';
import React from 'react';
import { ApolloProvider } from 'react-apollo';
import ReactDOM from 'react-dom';
import { BrowserRouter } from 'react-router-dom';
+import introspectionQueryResultData from './fragmentTypes';
import App from './App';
const theme = createMuiTheme();
const client = new ApolloClient({
uri: '/graphql',
+ cache: new InMemoryCache({
+ fragmentMatcher: new IntrospectionFragmentMatcher({
+ introspectionQueryResultData,
+ }),
+ }),
});
ReactDOM.render(