query-fe21b974dc19d9c3e45baf0052ec44ed
Personenliste - Alle ukrainischen Handballspieler mit Artikeln in einer von 4 Sprachen
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#>
PREFIX schema: <http://schema.org/>
#defaultView:Table;Map
SELECT DISTINCT ?item ?itemLabel ?itemDescription
?article_de
?article_en
?article_uk
?article_ru
?image
WHERE {
?item wdt:P31 wd:Q5. # ist ein = Mensch
?item wdt:P27 wd:Q212. # Staatsangehörgigkeit = Ukrainer
?item wdt:P106 wd:Q13365117. # Tätigkeit = Handballer
optional { # Artikel in der de.wikipedia
?article_de schema:about ?item.
?article_de schema:isPartOf <https://de.wikipedia.org/>.
}
optional { # Artikel in der en.wikipedia
?article_en schema:about ?item.
?article_en schema:isPartOf <https://en.wikipedia.org/>.
}
optional { # Artikel in der uk.wikipedia
?article_uk schema:about ?item.
?article_uk schema:isPartOf <https://uk.wikipedia.org/>.
}
optional { # Artikel in der ru.wikipedia
?article_ru schema:about ?item.
?article_ru schema:isPartOf <https://ru.wikipedia.org/>.
}
OPTIONAL { ?item wdt:P18 ?image. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en,uk,ru". }
}
order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article_de"):::projected
v4("?article_en"):::projected
v6("?article_ru"):::projected
v5("?article_uk"):::projected
v7("?image"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
c9([https://de.wikipedia.org/]):::iri
c10([https://en.wikipedia.org/]):::iri
c4(["wd:Q212"]):::iri
c15(["bd:serviceParam"]):::iri
c12([https://ru.wikipedia.org/]):::iri
c2(["wd:Q5"]):::iri
c11([https://uk.wikipedia.org/]):::iri
c6(["wd:Q13365117"]):::iri
c17(["#91;AUTO_LANGUAGE#93;,de,en,uk,ru"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P27"--> c4
v2 --"wdt:P106"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."schema:about".-> v2
v3 --"schema:isPartOf"--> c9
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v2
v4 --"schema:isPartOf"--> c10
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v5 -."schema:about".-> v2
v5 --"schema:isPartOf"--> c11
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v6 -."schema:about".-> v2
v6 --"schema:isPartOf"--> c12
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c15 --"wikibase:language"--> c17
end