query-740685ec3ef8d36225543f4ae7aac5ef
Properties associated with publishers, etc. SELECT ?p ?propLabel (COUNT(?p) AS ?numOccurs) WHERE { VALUES ?type { wd:Q2085381 # publisher wd:Q2608849 # imprint wd:Q18127 # record label } ?publisher wdt:P31/wdt:P279 ?type; ?p []. ?prop wikibase:directClaim ?p. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?p ?propLabel ORDER BY DESC(?numOccurs)
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 bd: <http://www.bigdata.com/rdf#>
#Properties associated with publishers, etc.
SELECT ?p ?propLabel (COUNT(?p) AS ?numOccurs)
WHERE
{
VALUES ?type {
wd:Q2085381 # publisher
wd:Q2608849 # imprint
wd:Q18127 # record label
}
?publisher wdt:P31/wdt:P279 ?type;
?p [].
?prop wikibase:directClaim ?p.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?p ?propLabel
ORDER BY DESC(?numOccurs)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?numOccurs")
v4("?p"):::projected
v5("?prop")
v3("?publisher")
v2("?type")
a2((" "))
a1((" "))
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?type/]
bind0-->v2
bind00(["wd:Q2085381"])
bind00 --> bind0
bind01(["wd:Q2608849"])
bind01 --> bind0
bind02(["wd:Q18127"])
bind02 --> bind0
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> v2
v3 -->v4--> a2
v5 --"wikibase:directClaim"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind2[/"count(?p)"/]
v4 --o bind2
bind2 --as--o v6