query-89df4782c28b9ea1b59f9ecfbba6e998

rq turtle/ttl

Monitor direct catalog (P972) use

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?catalog ?catalogLabel (COUNT(*) AS ?cnt) WHERE {
  ?item wdt:P972 ?catalog .
  SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} GROUP BY ?catalog ?catalogLabel ORDER BY DESC(?cnt)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?catalog"):::projected v4("?cnt") v2("?item") c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v2 --"wdt:P972"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end bind1[/"count(*)"/] bind1 --as--o v4