Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var GraphiqlIndex = []byte(`
<html>
<head>
<link href="https://cdnjs.cloudflare.com/ajax/libs/graphiql/0.17.1/graphiql.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.11.0/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.11.0/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/graphiql/0.17.1/graphiql.min.js"></script>
</head>
<body style="margin: 0">
<div id="graphiql" style="height: 100vh" />
<script>
function graphQLFetcher(graphQLParams) {
return fetch("/graphql", {
method: "post",
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(graphQLParams),
}).then(function (response) {
return response.text()
}).then(function (responseBody) {
try {
return JSON.parse(responseBody)
} catch (error) {
return responseBody
}
})
}
ReactDOM.render(
React.createElement(GraphiQL, {fetcher: graphQLFetcher}),
document.getElementById("graphiql")
)
</script>
</body>
</html>
`)
GraphiqlIndex html
View Source
var PlaygroundIndex = []byte(`
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8/>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<title>GraphQL Playground</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/css/index.css" />
<link rel="shortcut icon" href="//cdn.jsdelivr.net/npm/graphql-playground-react/build/favicon.png" />
<script src="//cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js"></script>
</head>
<body>
<div id="root">
<style>
body {
background-color: rgb(23, 42, 58);
font-family: Open Sans, sans-serif;
height: 90vh;
}
#root {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.loading {
font-size: 32px;
font-weight: 200;
color: rgba(255, 255, 255, .6);
margin-left: 20px;
}
img {
width: 78px;
height: 78px;
}
.title {
font-weight: 400;
}
</style>
<img src='//cdn.jsdelivr.net/npm/graphql-playground-react/build/logo.png' alt=''>
<div class="loading"> Loading
<span class="title">GraphQL Playground</span>
</div>
</div>
<script>window.addEventListener('load', function (event) {
const endpoint = '/graphql'
const wsProto = location.protocol == 'https:' ? 'wss:' : 'ws:'
GraphQLPlayground.init(document.getElementById('root'), {
endpoint: endpoint,
subscriptionEndpoint: wsProto + '//' + location.host + endpoint,
shareEnabled: true,
})
})</script>
</body>
</html>
`)
PlaygroundIndex html
Functions ¶
func MakeHandler ¶
MakeHandler make a graphql handler
Types ¶
Click to show internal directories.
Click to hide internal directories.