query-1ea23683c21d1e4761d09861d69fa5ee

rq turtle/ttl

Biologie

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#>
# Passer species
# added 2020-04
# defaultView:Table
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemLabel ?wissenschaftlicher_Name ?Alias ?article ?Bild ?itemDescription
WHERE {
  ?item wdt:P31 wd:Q16521;
    wdt:P105 wd:Q7432;
    (wdt:P171*) wd:Q28753.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
  OPTIONAL { ?item wdt:P225 ?wissenschaftlicher_Name. }
  OPTIONAL { ?article schema:about ?item; schema:isPartOf <https://de.wikipedia.org/>. }
  OPTIONAL { ?item wdt:P18 ?Bild. }
}
ORDER BY (?itemLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?Bild"):::projected v4("?article"):::projected v2("?item"):::projected v1("?itemLabel"):::projected v3("?wissenschaftlicher_Name"):::projected c14([https://de.wikipedia.org/]):::iri c10(["de"]):::literal c6(["wd:Q28753"]):::iri c4(["wd:Q7432"]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q16521"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P105"--> c4 v2 --"wdt:P171"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P225".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v2 v4 --"schema:isPartOf"--> c14 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end