query-90226b5aea815c6cab6d1d24e9023694

rq turtle/ttl

Europäische Länderportale

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:Table
#title: Europäische Länderportale
SELECT DISTINCT ?portal ?portalLabel ?article ?bild ?population WHERE {
  ?thema (wdt:P31/wdt:P279) wd:Q6256;
    (wdt:P361*) wd:Q46.
  ?portal wdt:P31 wd:Q4663903;
    wdt:P1204 ?thema.
  OPTIONAL { ?thema wdt:P1082 ?population. }
  OPTIONAL {
    ?article schema:about ?portal;
      schema:isPartOf <https://de.wikipedia.org/>;
      schema:name ?page_title.
  }
  OPTIONAL { ?thema wdt:P18 ?bild. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC (?population)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?article"):::projected v6("?bild"):::projected v5("?page_title") v1("?population"):::projected v3("?portal"):::projected v2("?thema") a1((" ")) c11([https://de.wikipedia.org/]):::iri c6(["wd:Q4663903"]):::iri c5(["wd:Q46"]):::iri c15(["bd:serviceParam"]):::iri c17(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q6256"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P361"--> c5 v3 --"wdt:P31"--> c6 v3 --"wdt:P1204"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1082".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v3 v4 --"schema:isPartOf"--> c11 v4 --"schema:name"--> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c15 --"wikibase:language"--> c17 end