query-104872f40726d1e5b2478cc3b09874d2

rq turtle/ttl

Albums of Stefanie Heinzmann

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 ?album ?albumLabel ?release ?length WHERE {
  ?album wdt:P31/wdt:P279* wd:Q482994 .
  ?album wdt:P175 wd:Q4489 .
  OPTIONAL{?album wdt:P577 ?release} .
  OPTIONAL {?album wdt:P2047 ?length}
  SERVICE wikibase:label{bd:serviceParam wikibase:language "en"}
} ORDER BY ?release

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?album"):::projected v3("?length"):::projected v1("?release"):::projected a1((" ")) c9(["bd:serviceParam"]):::iri c11(["en"]):::literal c3(["wd:Q482994"]):::iri c5(["wd:Q4489"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P175"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P577".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P2047".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end