Skip to content

Graphe Prelib sur serveur ABES

Francesco Beretta edited this page Nov 2, 2022 · 7 revisions

Graphe

Version 1, créé le 2 novembre 2022, URI: https://dataforhumanities.org/sparql-endpoint/prelib-v1 à partir du fichier:

Requêtes SPARQL

Graphes accessibles sur le serveur

select ?g (count(*) as ?eff) 
where {graph ?g {?s ?p ?o}} 
group by ?g
order by desc(?eff)

Classes et effectif des instances dans le graphe Prelib

SELECT ?class (COUNT(*) AS ?eff) 
WHERE {GRAPH <https://dataforhumanities.org/sparql-endpoint/prelib-v1> {?s a ?class}}
GROUP BY ?class
ORDER BY DESC(?eff)