This repo holds RDF data in different representations.
Beispiel einer SPARQL-Endpoint implementation (umgesetzt mit Apache Jena): http://62.217.127.118:8080/sparql-ld-endpoint/
Hier ist das Github Projekt dazu.
Folgende Beispiel Eingabe gibt die namen aller Techarticles in rdfa.html zurück
PREFIX foo: <http://schema.org/>
SELECT ?name
WHERE {
SERVICE <https://patternpedia.github.io/rdf-playground/rdfa.html> {
?TechArticles foo:name ?name }
}
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?nameOfFriend
WHERE {
SERVICE <https://patternpedia.github.io/rdf-playground/foaf-manu.html> {
?S foaf:knows ?knowsUri }
SERVICE ?knowsUri {
?Friend foaf:name ?nameOfFriend
}
}