query-c48c6ecae17e9d2e86e513396f4065b7

rq turtle/ttl

Offizielle Webseite der TatortfolgenSeit dem 19.04.2023 hat nun jede Tatortfolge die passende ARD-Webseite zugeordnet bekommen (mit Ausnahme der 13 ORF-Folgen natürlich). Das sind also 1235 Folgen. Drei Tage zuvor waren es 3-5 Folgen.

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX v: <http://www.wikidata.org/prop/statement/>
SELECT ?ordinal ?aired ?film ?title ?website ?language WHERE {
  ?film p:P179 ?series . ?series v:P179 wd:Q689438 . ?series pq:P1545 ?ordinal .
  ?film wdt:P577 ?aired .
  OPTIONAL {?film p:P856 ?websiteBlock . ?websiteBlock v:P856 ?website OPTIONAL{ ?websiteBlock pq:P407 ?language  } }
  OPTIONAL{?film wdt:P1476 ?title}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
}
ORDER BY DESC(?aired) DESC(xsd:integer(?ordinal))

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?aired"):::projected v3("?film"):::projected v7("?language"):::projected v2("?ordinal"):::projected v4("?series") v8("?title"):::projected v6("?website"):::projected v5("?websiteBlock") c13(["de"]):::literal c3(["wd:Q689438"]):::iri c11(["bd:serviceParam"]):::iri v3 --"p:P179"--> v4 v4 --"p:statement/P179"--> c3 v4 --"p:qualifier/P1545"--> v2 v3 --"p:direct/P577"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:P856".-> v5 v5 --"p:statement/P856"--> v6 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v5 -."p:qualifier/P407".-> v7 end end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:direct/P1476".-> v8 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end