query-1eeafc0538d47645c54605e07cf31c5f
TODO
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 ?item ?itemLabel (COUNT(*) AS ?cnt) WHERE {
?tournament wdt:P361 ?item; wdt:P279* wd:Q13219666 .
?item wdt:P279* wd:Q13219666 .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} GROUP BY ?item ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?cnt")
v2("?item"):::projected
v1("?tournament")
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c3(["wd:Q13219666"]):::iri
v1 --"wdt:P361"--> v2
v1 --"wdt:P279"--> c3
v2 --"wdt:P279"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(*)"/]
bind1 --as--o v3