query-70d3ce3e6a0be873c7efae128f8a186c

rq turtle/ttl

Geogast

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?number
WHERE
{
  ?item p:P4908 ?statement .
  ?statement a wikibase:BestRank . # Include only statements of best rank
  ?statement ps:P4908 wd:Q43133862 . # Item is season of Sons of Garmadon
  OPTIONAL { ?statement pq:P1545 ?number . }
  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 v3("?number"):::projected v2("?statement") c5(["wd:Q43133862"]):::iri c8(["bd:serviceParam"]):::iri c3(["wikibase:BestRank"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"p:P4908"--> v2 v2 --"a"--> c3 v2 --"p:statement/P4908"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:qualifier/P1545".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end