query-09cfb0f1d2391ddc8761e0db2eefad48

rq turtle/ttl

Perry Mason Works

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 ?item ?itemLabel ?itemDescription ?typeLabel ?originalLanguageLabel ?numberOfSeasons ?numberOfEpisodes
WHERE {
  VALUES ?item {
    wd:Q165356
    wd:Q16553472
    wd:Q25215457
  }
  ?item wdt:P31 ?type.
  OPTIONAL {?item wdt:P2437 ?numberOfSeasons}
  OPTIONAL {?item wdt:P1113 ?numberOfEpisodes}
  OPTIONAL {?item wdt:P364 ?originalLanguage}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v4("?numberOfEpisodes"):::projected v3("?numberOfSeasons"):::projected v5("?originalLanguage") v2("?type") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal bind0[/VALUES ?item/] bind0-->v1 bind00(["wd:Q165356"]) bind00 --> bind0 bind01(["wd:Q16553472"]) bind01 --> bind0 bind02(["wd:Q25215457"]) bind02 --> bind0 v1 --"wdt:P31"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P2437".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1113".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P364".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end