query-3b6531ac3ba5f1b9f9e430d0ec274e32

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?ist_eineLabel ?objekt ?objektLabel ?cityLabel ?personLabel ?artLabel ?geschlechtLabel ?personDescription ?religionLabel 
       (group_concat(DISTINCT ?berufL;separator=", ") as ?berufe) 
WHERE
{
 # ?street wdt:P31 wd:Q79007 .
 ?objekt wdt:P31 ?ist_eine .
  ?objekt wdt:P131 wd:Q570057 . #Verwaltungseinheit Karben
  ?objekt wdt:P131 ?city .
  ?objekt wdt:P138 ?person .
  ?person wdt:P31 ?art .
  FILTER ( ?art not in ( wd:Q16521, wd:Q55983715, wd:Q754660, wd:Q978 ) ) . #nicht Taxon, Lebewesen Trivaler Name, Falconinae, Mem
  optional { ?person wdt:P21 ?geschlecht .}
  optional { ?person wdt:P140 ?religion .}
  optional { ?person wdt:P106 ?beruf .
    optional { ?beruf rdfs:label ?berufL . FILTER((LANG(?berufL)) = "de") . } 
           }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
}
GROUP BY ?ist_eineLabel ?objekt ?objektLabel ?cityLabel ?personLabel ?artLabel ?geschlechtLabel ?personDescription ?religionLabel 
ORDER BY ?city ?objektLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?art") v10("?beruf") v9("?berufL"):::projected v11("?berufe") v1("?city") v7("?geschlecht") v5("?ist_eine") v4("?objekt"):::projected v2("?objektLabel"):::projected v6("?person") v8("?religion") c11(["de"]):::literal c7(["wd:Q570057"]):::iri c15(["bd:serviceParam"]):::iri f0[["?art != 'wd:Q16521'?art != 'wd:Q55983715'?art != 'wd:Q754660'?art != 'wd:Q978'"]] f0 --> v3 v4 --"wdt:P31"--> v5 v4 --"wdt:P131"--> c7 v4 --"wdt:P131"--> v1 v4 --"wdt:P138"--> v6 v6 --"wdt:P31"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P21".-> v7 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P140".-> v8 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P106".-> v10 subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v10 -."rdfs:label".-> v9 end end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c15 --"wikibase:language"--> c11 end bind2[/"?berufL"/] v9 --o bind2 bind2 --as--o v11