query-704e975a9bf0bdea9fa72f456c192da4

rq turtle/ttl

Number of seasons

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?series ?seriesLabel ?seasons WHERE {
  ?series wdt:P2437 ?seasons .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" .
  }
} ORDER BY DESC(?seasons) ?seriesLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?seasons"):::projected v3("?series"):::projected v2("?seriesLabel"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v3 --"wdt:P2437"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end