Le SPARQL endpoint permet d'interroger les données structurées au format RDF présentes dans l'archive ouverte HAL
Accéder au SPARQL endpoint
select distinct ?g, count(*)
where {
graph ?g { ?s ?p ?o }
}
Tester
select distinct *
where {
?s skos:inScheme <https://data.archives-ouvertes.fr/doctype>
}
Tester
select ?p ?o
where {
<https://data.archives-ouvertes.fr/document/hal-00000001v2> ?p ?o
}
Tester
select distinct ?s ?o
where {
?s a foaf:Person .
?s <http://www.openarchives.org/ore/terms/isAggregatedBy> ?o
}
Tester
prefix foaf: <http://xmlns.com/foaf/0.1/>
select distinct ?s ?name
where {
?s a foaf:Person .
?s foaf:topic_interest "RDF" .
?s foaf:name ?name
}
Tester