query-93a6381c1e303318d75f568ebf6f51ab
SPARQL query
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?name ?wikidata WHERE {
?wikidata wdt:P39 wd:Q33129181 .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "et,en".
?item rdfs:label ?wikidata .
}
}
ORDER BY ?name
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item")
v1("?name"):::projected
v2("?wikidata"):::projected
c6(["et,en"]):::literal
c4(["bd:serviceParam"]):::iri
c2(["wd:Q33129181"]):::iri
v2 --"wdt:P39"--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
v3 --"rdfs:label"--> v2
end