query-3f3aae0501af01e68a9cd3103f9e5bfe

rq turtle/ttl

Film de Buster Keaton SELECT ?item ?itemLabel ?date ?InternetArchives ?Commons WHERE { ?item wdt:P31 wd:Q11424; wdt:P161 wd:Q103949. OPTIONAL {?item wdt:P577 ?date.} OPTIONAL {?item wdt:P724 ?InternetArchives.} OPTIONAL {?item wdt:P10 ?Commons.} SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } ORDER BY ?date

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#>
#Film de Buster Keaton
SELECT ?item ?itemLabel ?date ?InternetArchives ?Commons
WHERE 
{
  ?item wdt:P31 wd:Q11424;
        wdt:P161 wd:Q103949.
 OPTIONAL {?item wdt:P577 ?date.}
 OPTIONAL {?item wdt:P724 ?InternetArchives.}
 OPTIONAL {?item wdt:P10 ?Commons.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?date

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?Commons"):::projected v3("?InternetArchives"):::projected v1("?date"):::projected v2("?item"):::projected c9(["bd:serviceParam"]):::iri c4(["wd:Q103949"]):::iri c11(["en"]):::literal c2(["wd:Q11424"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P161"--> c4 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:P724".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P10".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end