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.
oxigraph/server/templates/query.html

26 lines
889 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Oxigraph server</title>
<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>
</head>
<body>
<div id="yasgui"></div>
<script>
new Yasgui(document.getElementById("yasgui"), {
requestConfig: { endpoint: window.location.protocol + '//' + window.location.host + "/query" },
endpointCatalogueOptions: {
getData: function () {
return [
{ endpoint: window.location.protocol + '//' + window.location.host + "/query" },
{ endpoint: window.location.protocol + '//' + window.location.host + "/update" },
];
},
keys: [],
}
});
</script>
</body>