query-704a5d5ae5d8883d6c8732cff23c93ff
TODO
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>
SELECT ?gemeinde
?gemeindeLabel
?einwohner
?einwohner_zeit
?gkz
?geo
?hoehe
?kfz
?commons_cat
?flaeche
?siteLink
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?gemeinde wdt:P31 wd:Q667509.
OPTIONAL { ?gemeinde p:P1082 ?einwohner. ?einwohner pq:P585 ?einwohner_zeit}
OPTIONAL { ?gemeinde wdt:P964 ?gkz. }
OPTIONAL { ?gemeinde wdt:P625 ?geo. }
OPTIONAL { ?gemeinde wdt:P2044 ?hoehe. }
OPTIONAL { ?gemeinde wdt:P395 ?kfz. }
OPTIONAL { ?gemeinde wdt:P373 ?commons_cat. }
OPTIONAL { ?gemeinde wdt:P2046 ?flaeche. }
OPTIONAL {
?siteLink schema:about ?gemeinde.
?siteLink schema:inLanguage "de".
}
}
ORDER BY DESC(?einwohner)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v8("?commons_cat"):::projected
v1("?einwohner"):::projected
v3("?einwohner_zeit"):::projected
v9("?flaeche"):::projected
v2("?gemeinde"):::projected
v5("?geo"):::projected
v4("?gkz"):::projected
v6("?hoehe"):::projected
v7("?kfz"):::projected
v10("?siteLink"):::projected
c17(["de"]):::literal
c2(["bd:serviceParam"]):::iri
c6(["wd:Q667509"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"p:direct/P31"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:P1082".-> v1
v1 --"p:qualifier/P585"--> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P964".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P625".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P2044".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P395".-> v7
end
subgraph optional5["(optional)"]
style optional5 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P373".-> v8
end
subgraph optional6["(optional)"]
style optional6 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P2046".-> v9
end
subgraph optional7["(optional)"]
style optional7 fill:#bbf,stroke-dasharray: 5 5;
v10 -."schema:about".-> v2
v10 --"schema:inLanguage"--> c17
end