2019-03-24 14:57:29 +01:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
import { Provider } from 'react-redux'
|
2020-04-22 03:05:14 +02:00
|
|
|
import { Playground, store } from 'graphql-playground-react'
|
2019-03-24 14:57:29 +01:00
|
|
|
|
|
|
|
import './index.css'
|
|
|
|
|
2019-06-05 02:00:24 +02:00
|
|
|
const fetch = window.fetch
|
|
|
|
window.fetch = function() {
|
|
|
|
arguments[1].credentials = 'include'
|
|
|
|
return Promise.resolve(fetch.apply(global, arguments))
|
|
|
|
}
|
|
|
|
|
2019-03-24 14:57:29 +01:00
|
|
|
class App extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<header style={{
|
2020-04-22 03:05:14 +02:00
|
|
|
color: 'lightblue',
|
2019-03-24 14:57:29 +01:00
|
|
|
letterSpacing: '0.15rem',
|
2020-04-22 03:05:14 +02:00
|
|
|
paddingTop: '10px',
|
|
|
|
paddingBottom: '0px'
|
2019-03-24 14:57:29 +01:00
|
|
|
}}
|
|
|
|
>
|
2020-04-22 03:05:14 +02:00
|
|
|
<div style={{
|
2019-03-24 14:57:29 +01:00
|
|
|
textDecoration: 'none',
|
|
|
|
margin: '0px',
|
2020-04-22 03:05:14 +02:00
|
|
|
fontSize: '14px',
|
|
|
|
fontWeight: '500',
|
2019-04-15 00:54:59 +02:00
|
|
|
textTransform: 'uppercase',
|
2019-12-10 06:03:44 +01:00
|
|
|
marginLeft: '10px',
|
2020-04-22 03:05:14 +02:00
|
|
|
}}
|
|
|
|
>Super Graph</div>
|
2019-03-24 14:57:29 +01:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<Provider store={store}>
|
|
|
|
<Playground
|
|
|
|
endpoint="/api/v1/graphql"
|
2019-06-05 02:00:24 +02:00
|
|
|
settings="{
|
|
|
|
'schema.polling.enable': false,
|
|
|
|
'request.credentials': 'include',
|
|
|
|
'general.betaUpdates': true,
|
|
|
|
'editor.reuseHeaders': true,
|
|
|
|
}"
|
2019-03-24 14:57:29 +01:00
|
|
|
/>
|
|
|
|
</Provider>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|