query-2b78af73789851c30d31364e8eb23dd1

rq turtle/ttl

title: österr. Architekten mit / ohne Artikel SELECT ?_s ?_sLabel ?_sDescription ?article WHERE { #?_s wdt:P17 wd:Q40 . #?_s wdt:P131/wdt:P279 wd:Q1741 . ?_s wdt:P106 wd:Q42973. ?_s wdt:P27 wd:Q40. #?_s wdt:P84 wd:Q84902 # ?_s rdfs:label ?_sLabel . optional { ?article schema:about ?_s . ?article schema:isPartOf https://de.wikipedia.org/ . #Targeting Wikipedia language where subjects has no article. } #FILTER NOT EXISTS { # ?article schema:about ?_s . # ?article schema:isPartOf https://de.wikipedia.org/ . #Targeting Wikipedia language where subjects has no article. #}

SERVICE wikibase:label { bd:serviceParam wikibase:language '[AUTO_LANGUAGE,de,en]' } } GROUP BY ?_s ?_sLabel ?_sDescription ?article

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title: österr. Architekten mit / ohne Artikel
SELECT ?_s ?_sLabel ?_sDescription ?article WHERE {
  #?_s wdt:P17 wd:Q40 .
  #?_s wdt:P131*/wdt:P279* wd:Q1741 .
  ?_s wdt:P106 wd:Q42973.
  ?_s wdt:P27 wd:Q40.
  #?_s wdt:P84 wd:Q84902
  # ?_s rdfs:label ?_sLabel .
  optional {
    ?article schema:about ?_s .
    ?article schema:isPartOf <https://de.wikipedia.org/> . #Targeting Wikipedia language where subjects has no article.
    }
  #FILTER NOT EXISTS {
  #  ?article schema:about ?_s .
  #  ?article schema:isPartOf <https://de.wikipedia.org/> . #Targeting Wikipedia language where subjects has no article.
  #}

  SERVICE wikibase:label { bd:serviceParam wikibase:language '[AUTO_LANGUAGE,de,en]' }
} GROUP BY ?_s ?_sLabel ?_sDescription ?article

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?_s"):::projected v2("?article"):::projected c7([https://de.wikipedia.org/]):::iri c9(["bd:serviceParam"]):::iri c4(["wd:Q40"]):::iri c2(["wd:Q42973"]):::iri c11(["#91;AUTO_LANGUAGE,de,en#93;"]):::literal v1 --"wdt:P106"--> c2 v1 --"wdt:P27"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."schema:about".-> v1 v2 --"schema:isPartOf"--> c7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end