Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Aug 27, 2024
1 parent bf6278f commit ef0e048
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6afabbd3
f3288f48
4 changes: 2 additions & 2 deletions cypher.html
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ <h3 class="anchored" data-anchor-id="abfrage-editor">Abfrage-Editor</h3>
</section>
<section id="anfrageformat" class="level3">
<h3 class="anchored" data-anchor-id="anfrageformat">Anfrageformat</h3>
<p>Der vorläufige API-Endpunkt ist <a href="https://graph.gbv.de/api/cypher" class="uri">https://graph.gbv.de/api/cypher</a>. Die Cypher-Abfrage wird mit einer <strong>HTTP GET</strong> Anfrage im Query-Parameter <code>query</code> übergeben (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api">API-Dokumentation</a>).</p>
<p>Der vorläufige API-Endpunkt ist <a href="https://graph.nfdi4objects.net/api/cypher" class="uri">https://graph.nfdi4objects.net/api/cypher</a>. Die Cypher-Abfrage wird mit einer <strong>HTTP GET</strong> Anfrage im Query-Parameter <code>query</code> übergeben (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api">API-Dokumentation</a>).</p>
</section>
<section id="rückgabeformat" class="level3">
<h3 class="anchored" data-anchor-id="rückgabeformat">Rückgabeformat</h3>
Expand Down Expand Up @@ -461,7 +461,7 @@ <h3 class="anchored" data-anchor-id="beispielabfragen">Beispielabfragen</h3>
<pre class="cypher"><code>MATCH (n:E16_Measurement)-[:P40_observed_dimension]-&gt;(m:E54_Dimension)-[:P2_has_type]-&gt;(:E55_Type)-[:P48_has_preferred_identifier]-&gt;(l)
MATCH (m)-[:P91_has_unit]-&gt;(:E58_Measurement_Unit)-[:P48_has_preferred_identifier]-&gt;(o)
RETURN m.P90_has_value AS value, o.P3_has_note AS unit, l.P3_has_note AS note</code></pre>
<div id="e202ea05" class="cell" data-execution_count="1">
<div id="8ca5dbf5" class="cell" data-execution_count="1">
<div class="cell-output cell-output-stdout">
<pre><code>2.8,cm,Höhe (Scan)</code></pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion js/common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
async function cypherQuery(query) {
const url = "https://graph.gbv.de/api/cypher?" + new URLSearchParams({query})
const url = "https://graph.nfdi4objects.net/api/cypher?" + new URLSearchParams({query})
return fetch(url).then(async response => {
const data = await response.json()
if (!response.ok) throw new Error(`${data.error}: ${data.message}`)
Expand Down
4 changes: 2 additions & 2 deletions search.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"href": "usage.html",
"title": "Benutzung",
"section": "",
"text": "Cypher-API\nEine öffentliche Entwicklungsversion des Property Graphen kann mit der Abfragesprache Cypher über die API-URL https://graph.gbv.de/api/cypher abgefragt werden (siehe API-Dokumentation). Unter https://graph.gbv.de/cypher gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel Cypher-Abfragen.",
"text": "Cypher-API\nEine öffentliche Entwicklungsversion des Property Graphen kann mit der Abfragesprache Cypher über die API-URL https://graph.nfdi4objects.net/api/cypher abgefragt werden (siehe API-Dokumentation). Unter https://graph.nfdi4objects.net/cypher gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel Cypher-Abfragen.",
"crumbs": [
"<span class='chapter-number'>7</span>  <span class='chapter-title'>Benutzung</span>"
]
Expand All @@ -154,7 +154,7 @@
"href": "usage.html#sparql-api",
"title": "Benutzung",
"section": "SPARQL-API",
"text": "SPARQL-API\nEine öffentliche Entwicklungsversion des Triple-Store kann mit der Abfragesprache SPARQL über die API-URL https://graph.gbv.de/api/sparql abgefragt werden (siehe API-Dokumentation). Unter https://graph.gbv.de/sparql gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel SPARQL-Abfragen.",
"text": "SPARQL-API\nEine öffentliche Entwicklungsversion des Triple-Store kann mit der Abfragesprache SPARQL über die API-URL https://graph.nfdi4objects.net/api/sparql abgefragt werden (siehe API-Dokumentation). Unter https://graph.nfdi4objects.net/sparql gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel SPARQL-Abfragen.",
"crumbs": [
"<span class='chapter-number'>7</span>  <span class='chapter-title'>Benutzung</span>"
]
Expand Down
4 changes: 2 additions & 2 deletions usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ <h1 class="title"><span class="chapter-title">Benutzung</span></h1>
<p>Der Zugriff auf den Knowledge Graphen ist bislang nur über technische Schnittstellen (APIs) möglich. Darüber hinaus sind eine browserbasierte Suchoberfläche, Datenbankdumps und die Integration in andere Anwendungen geplant.</p>
<section id="cypher-api" class="level2">
<h2 class="anchored" data-anchor-id="cypher-api">Cypher-API</h2>
<p>Eine öffentliche Entwicklungsversion des Property Graphen kann mit der Abfragesprache Cypher über die API-URL <a href="https://graph.gbv.de/api/cypher" class="uri">https://graph.gbv.de/api/cypher</a> abgefragt werden (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api">API-Dokumentation</a>). Unter <a href="https://graph.gbv.de/cypher" class="uri">https://graph.gbv.de/cypher</a> gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel <a href="./cypher.html">Cypher-Abfragen</a>.</p>
<p>Eine öffentliche Entwicklungsversion des Property Graphen kann mit der Abfragesprache Cypher über die API-URL <a href="https://graph.nfdi4objects.net/api/cypher" class="uri">https://graph.nfdi4objects.net/api/cypher</a> abgefragt werden (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api">API-Dokumentation</a>). Unter <a href="https://graph.nfdi4objects.net/cypher" class="uri">https://graph.nfdi4objects.net/cypher</a> gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel <a href="./cypher.html">Cypher-Abfragen</a>.</p>
</section>
<section id="sparql-api" class="level2">
<h2 class="anchored" data-anchor-id="sparql-api">SPARQL-API</h2>
<p>Eine öffentliche Entwicklungsversion des Triple-Store kann mit der Abfragesprache SPARQL über die API-URL <a href="https://graph.gbv.de/api/sparql" class="uri">https://graph.gbv.de/api/sparql</a> abgefragt werden (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#sparql-api">API-Dokumentation</a>). Unter <a href="https://graph.gbv.de/sparql" class="uri">https://graph.gbv.de/sparql</a> gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel <a href="./sparql.html">SPARQL-Abfragen</a>.</p>
<p>Eine öffentliche Entwicklungsversion des Triple-Store kann mit der Abfragesprache SPARQL über die API-URL <a href="https://graph.nfdi4objects.net/api/sparql" class="uri">https://graph.nfdi4objects.net/api/sparql</a> abgefragt werden (siehe <a href="https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#sparql-api">API-Dokumentation</a>). Unter <a href="https://graph.nfdi4objects.net/sparql" class="uri">https://graph.nfdi4objects.net/sparql</a> gibt es eine einfache Weboberfläche zur Formulierung von Abfragen. Eine weitere Einführung mit Beispielen gibt es im Kapitel <a href="./sparql.html">SPARQL-Abfragen</a>.</p>
</section>
<section id="datenbankdumps" class="level2">
<h2 class="anchored" data-anchor-id="datenbankdumps">Datenbankdumps</h2>
Expand Down

0 comments on commit ef0e048

Please sign in to comment.