Skip to content

Commit

Permalink
Update graph URL
Browse files Browse the repository at this point in the history
  • Loading branch information
nichtich committed Aug 27, 2024
1 parent 50f7319 commit eead584
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manual/cypher.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cypherEditor

### Anfrageformat

Der vorläufige API-Endpunkt ist <https://graph.gbv.de/api/cypher>. Die Cypher-Abfrage wird mit einer **HTTP GET** Anfrage im Query-Parameter `query` übergeben
Der vorläufige API-Endpunkt ist <https://graph.nfdi4objects.net/api/cypher>. Die Cypher-Abfrage wird mit einer **HTTP GET** Anfrage im Query-Parameter `query` übergeben
(siehe [API-Dokumentation](https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api)).

### Rückgabeformat
Expand Down
2 changes: 1 addition & 1 deletion manual/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 manual/usage.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Der Zugriff auf den Knowledge Graphen ist bislang nur über technische Schnittst

## Cypher-API

Eine ö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](https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api)). 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](cypher.qmd).
Eine ö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](https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#property-graph-api)). 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](cypher.qmd).

## SPARQL-API

Eine ö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](https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#sparql-api)). 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](sparql.qmd).
Eine ö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](https://github.com/nfdi4objects/n4o-graph-apis?tab=readme-ov-file#sparql-api)). 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](sparql.qmd).

## Datenbankdumps

Expand Down
2 changes: 1 addition & 1 deletion neo4j.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"url": "http://localhost:7474",
"user": "",
"password": "",
"public": "https://graph.gbv.de/api/cypher"
"public": "https://graph.nfdi4objects.net/api/cypher"
}

0 comments on commit eead584

Please sign in to comment.