query-dc3b8ed20791d5f6de29176b409b6845
- Item types most-linked to franchises:
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#>
SELECT ?type ?typeLabel (COUNT(?item) as ?items) WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?franchise wdt:P31 wd:Q196600.
?item ?propertyRel ?franchise.
?item wdt:P31 ?type.
?propertyItem wikibase:directClaim ?propertyRel.
}
GROUP BY ?type ?typeLabel
ORDER BY DESC(?items)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?franchise")
v3("?item"):::projected
v7("?items")
v6("?propertyItem")
v4("?propertyRel")
v5("?type"):::projected
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q196600"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
v3 -->v4--> v2
v3 --"wdt:P31"--> v5
v6 --"wikibase:directClaim"--> v4
bind1[/"count(?item)"/]
v3 --o bind1
bind1 --as--o v7