Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
907 B
28 lines
907 B
6 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
5 years ago
|
<title>Oxigraph server</title>
|
||
4 years ago
|
<link href="https://unpkg.com/@triply/yasgui@4/build/yasgui.min.css" rel="stylesheet" type="text/css" />
|
||
|
<script src="https://unpkg.com/@triply/yasgui@4/build/yasgui.min.js"></script>
|
||
4 years ago
|
<link rel="icon" type="image/svg+xml" href="/logo.svg">
|
||
6 years ago
|
</head>
|
||
|
<body>
|
||
4 years ago
|
<div id="yasgui"></div>
|
||
6 years ago
|
<script>
|
||
3 years ago
|
const url = window.location.href.endsWith('/') ? window.location.href.slice(0, -1) : window.location.href;
|
||
4 years ago
|
new Yasgui(document.getElementById("yasgui"), {
|
||
3 years ago
|
requestConfig: { endpoint: url + "/query" },
|
||
4 years ago
|
endpointCatalogueOptions: {
|
||
|
getData: function () {
|
||
|
return [
|
||
3 years ago
|
{ endpoint: url + "/query" },
|
||
|
{ endpoint: url + "/update" },
|
||
4 years ago
|
];
|
||
|
},
|
||
|
keys: [],
|
||
6 years ago
|
}
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|