Skip to content

This repo holds RDF data in different representations.

Notifications You must be signed in to change notification settings

PatternAtlas/rdf-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rdf-playground

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.

Query RDFa data

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  }
}

Query über zwei files

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
  }
}

About

This repo holds RDF data in different representations.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages