yasgui.html 912 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>RDFLib endpoint</title>
  6. <link href="https://unpkg.com/@triply/yasgui@4/build/yasgui.min.css" rel="stylesheet" type="text/css" />
  7. <script src="https://unpkg.com/@triply/yasgui@4/build/yasgui.min.js"></script>
  8. </head>
  9. <body>
  10. <div id="yasgui"></div>
  11. <script>
  12. Yasqe.defaults.value = `$EXAMPLE_QUERY`
  13. const url = window.location.href.endsWith('/') ? window.location.href.slice(0, -1) : window.location.href;
  14. const yasgui = new Yasgui(document.getElementById("yasgui"), {
  15. requestConfig: { endpoint: url + "/" },
  16. endpointCatalogueOptions: {
  17. getData: function () {
  18. return [
  19. { endpoint: url + "/" },
  20. ];
  21. },
  22. keys: [],
  23. },
  24. });
  25. </script>
  26. </body>