query-668f8ebed076a849f8fcdc962a13235c
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 ?part_ofLabel ?year ?countryLabel ?surfaceLabel ?purse ?participants
WHERE
{
?item wdt:P1346 wd:Q182736 .
OPTIONAL { ?item wdt:P361 part_of . }
OPTIONAL { ?item wdt:P585 ?time . BIND(year(?time) as ?year) }
OPTIONAL { ?item wdt:P17 ?country . }
OPTIONAL { ?item wdt:P765 ?surface . }
OPTIONAL { ?item wdt:P2121 ?purse . }
OPTIONAL { ?item wdt:P1132 ?participants . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}