joyent-portal/spikes/metrics-service/graphql/src/routes/index.html
2016-11-04 17:11:35 +00:00

29 lines
487 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="root"></div>
<script>
const client = fetch('http://localhost:8000/graphql', {
method: 'POST',
body: `
subscription {
events(container:"1") {
value,
when
}
}
`
});
client.then((client) => {
debugger;
});
</script>
</body>
</html>