query-865815780e5629b84bd8c3edfbbfa224

rq turtle/ttl

Mines in Serbia

Creates a list of mines in Serbia

SELECT DISTINCT ?rudnik ?rudnikLabel WHERE { ?rudnik wdt:P31 wd:Q820477 ; ?range wd:Q403 . SERVICE wikibase:label { bd:serviceParam wikibase:language "sr,[AUTO_LANGUAGE],en". } } LIMIT 400

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#>
#Mines in Serbia
#Creates a list of mines in Serbia
SELECT DISTINCT ?rudnik ?rudnikLabel 
WHERE {
  ?rudnik wdt:P31 wd:Q820477 ;
          ?range wd:Q403 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "sr,[AUTO_LANGUAGE],en". }
} LIMIT 400

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?range") v1("?rudnik"):::projected c2(["wd:Q820477"]):::iri c5(["bd:serviceParam"]):::iri c3(["wd:Q403"]):::iri c7(["sr,#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 -->v2--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end