query-7a24a27d1380cbd995d9c9c1d719ce33

rq turtle/ttl

Katzen mit deutschen WP-Artikeln SELECT ?katze ?katzeLabel ?katzeDescription ?article WHERE { ?katze wdt:P31 wd:Q146 . ?article schema:about ?katze . ?article schema:inLanguage 'de' . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". } }

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#>
#Katzen mit deutschen WP-Artikeln
SELECT ?katze ?katzeLabel ?katzeDescription ?article
WHERE 
{
  ?katze     wdt:P31        wd:Q146  .
  ?article   schema:about   ?katze   .
  ?article   schema:inLanguage 'de'  .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?katze"):::projected c5(["de"]):::literal c9(["#91;AUTO_LANGUAGE#93;,de"]):::literal c2(["wd:Q146"]):::iri c7(["bd:serviceParam"]):::iri v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:inLanguage"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end