query-d080ed03848c8786fffcbd917f4f160e

rq turtle/ttl

Location of main tournament page to parts of tournament

Use at

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 ?participant ?participantLabel ?location WHERE {
   ?item wdt:P17 wd:Q35; wdt:P5008 wd:Q66098665; wdt:P527 ?participant; wdt:P276 ?location .
   SERVICE wikibase:label {
     bd:serviceParam wikibase:language "en" .
   }
 }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?location"):::projected v2("?participant"):::projected c8(["bd:serviceParam"]):::iri c4(["wd:Q66098665"]):::iri c10(["en"]):::literal c2(["wd:Q35"]):::iri v1 --"wdt:P17"--> c2 v1 --"wdt:P5008"--> c4 v1 --"wdt:P527"--> v2 v1 --"wdt:P276"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end