query-49765281655aca08f3d564b7e7937101

rq turtle/ttl

Beispielabfrage - Liste von Hochhäusern/Wolkenkratzer ohne Artikel in der deutschsprachigen Wikipedia, absteigend sortiert nach Anzahl der Artikel in anderen Sprachen https://w.wiki/xgk

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:ImageGrid
SELECT distinct ?item ?itemLabel (COUNT(distinct ?sitelink) as ?count) ?Bild ?loc WHERE {
    { ?item wdt:P31 wd:Q18142. } UNION {  ?item wdt:P31 wd:Q11303. } # ist ein: Hochhaus ODER ist: ein Wolkenkratzer
    ?sitelink schema:about ?item .
    FILTER EXISTS { ?wen schema:about ?item . ?wen schema:inLanguage "en" } # Artikel existiert in der englischsprachigen Wikipedia
    FILTER NOT EXISTS { ?wde schema:about ?item . ?wde schema:inLanguage "de" }   # Artikel existiert nicht in der deutschsprachigen Wikipedia
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "de,en" .
    }
    OPTIONAL { ?item wdt:P18 ?Bild. }    # optional, wenn vorhanden, Bild mitausgeben
    OPTIONAL { ?item wdt:P625 ?loc. }  # optional, wenn vorhanden, koordinaten
}
GROUP BY ?item ?itemLabel ?Bild ?loc
ORDER BY DESC(?count)    # sortiere nach der Anzahl der Sitelinks

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?Bild"):::projected v8("?count") v3("?item"):::projected v7("?loc"):::projected v5("?sitelink"):::projected v2("?wde") v4("?wen") c3(["de"]):::literal c6(["wd:Q18142"]):::iri c4(["en"]):::literal c9(["bd:serviceParam"]):::iri c11(["de,en"]):::literal c7(["wd:Q11303"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:about"--> e0v2 e0v1 --"schema:inLanguage"--> e0c3 e0v2("?item"):::projected e0v1("?wde"):::projected e0c3(["de"]):::literal end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 f0 --> c2 f0 --> c3 v2 --"schema:about"--> v3 v2 --"schema:inLanguage"--> c3 f1[[" "]] subgraph f1e1["Exists Clause"] e1v1 --"schema:about"--> e1v2 e1v1 --"schema:inLanguage"--> e1c3 e1v2("?item"):::projected e1v1("?wen"):::projected e1c3(["en"]):::literal end f1--EXISTS--> f1e1 f1 --> v4 f1 --> c1 f1 --> v3 f1 --> c2 f1 --> c4 v4 --"schema:about"--> v3 v4 --"schema:inLanguage"--> c4 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P31"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P31"--> c6 end union0r <== or ==> union0l end v5 --"schema:about"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P18".-> v6 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P625".-> v7 end bind3[/"count(?sitelink)"/] v5 --o bind3 bind3 --as--o v8