query-258d8544f3059410c400d7793498fef8
Publishers, etc. SELECT ?publisher ?publisherLabel ?publisherDescription (COUNT(DISTINCT ?label) AS ?numLabel) ?sitelinks ?inception ?dissolved (COUNT(DISTINCT ?subsidiary) AS ?numSubsidiaries) WHERE { VALUES ?type { wd:Q2085381 # publisher wd:Q2608849 # imprint wd:Q18127 # record label } ?publisher wdt:P31/wdt:P279 ?type; wikibase:sitelinks ?sitelinks. OPTIONAL {?publisher rdfs:label|skos:altLabel ?label} OPTIONAL {?publisher wdt:P571 ?inception} OPTIONAL {?publisher wdt:P576 ?dissolved} OPTIONAL {?publisher wdt:P355 ?subsidiary} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,fr,ja,es,eo,ru,it". } } GROUP BY ?publisher ?publisherLabel ?publisherDescription ?inception ?dissolved ?sitelinks ORDER BY DESC(?sitelinks)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Publishers, etc.
SELECT ?publisher ?publisherLabel ?publisherDescription (COUNT(DISTINCT ?label) AS ?numLabel) ?sitelinks ?inception ?dissolved (COUNT(DISTINCT ?subsidiary) AS ?numSubsidiaries)
WHERE
{
VALUES ?type {
wd:Q2085381 # publisher
wd:Q2608849 # imprint
wd:Q18127 # record label
}
?publisher wdt:P31/wdt:P279 ?type;
wikibase:sitelinks ?sitelinks.
OPTIONAL {?publisher rdfs:label|skos:altLabel ?label}
OPTIONAL {?publisher wdt:P571 ?inception}
OPTIONAL {?publisher wdt:P576 ?dissolved}
OPTIONAL {?publisher wdt:P355 ?subsidiary}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,fr,ja,es,eo,ru,it". }
}
GROUP BY ?publisher ?publisherLabel ?publisherDescription ?inception ?dissolved ?sitelinks
ORDER BY DESC(?sitelinks)