query-e33dc5a4d312c739c75f0b69164a3929

rq turtle/ttl

[Housecleaning] Show detailed data of previous queryTo identify those (co-)applicants that are not attributed to a Bundesland.

Use at

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#>
SELECT ?a ?aLabel ?p ?pLabel ?w ?wLabel
WHERE { 
  {
    SELECT ?a ?w ?p
    WHERE {  
      ?p wdt:P31 wd:Q98270496 . 
      ?p wdt:P1416 ?w .
      OPTIONAL {
      ?w wdt:P131+ ?a .
      ?a  wdt:P31 wd:Q1221156 .
      }
    }
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" . }
} ORDER BY ASC(?aLabel) ASC(?pLanbel) ASC(?wLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?a"):::projected v1("?aLabel"):::projected v4("?p"):::projected v2("?pLanbel") v5("?w"):::projected v3("?wLabel"):::projected c9(["de"]):::literal c7(["bd:serviceParam"]):::iri c5(["wd:Q1221156"]):::iri c2(["wd:Q98270496"]):::iri v4 --"wdt:P31"--> c2 v4 --"wdt:P1416"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v5 -."wdt:P131".-> v6 v6 --"wdt:P31"--> c5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end