29 lines
487 B
HTML
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>
|