query-610dbe24342ceee495365feda7f87a1e

rq turtle/ttl

listu rudnika sa zemljom u kojoj se nalaze SELECT DISTINCT ?rudnik ?rudnikLabel ?zemlja ?zemljaLabel WHERE { ?rudnik wdt:P31 wd:Q820477; wdt:P17 ?zemlja. SERVICE wikibase:label { bd:serviceParam wikibase:language "sr,[AUTO_LANGUAGE],en". } } LIMIT 200

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#>
# listu rudnika sa zemljom u kojoj se nalaze
SELECT DISTINCT ?rudnik ?rudnikLabel ?zemlja ?zemljaLabel
WHERE {
  ?rudnik wdt:P31 wd:Q820477;
          wdt:P17 ?zemlja.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "sr,[AUTO_LANGUAGE],en". }
} LIMIT 200

Query found at

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