query-c860b64ca8f9935804575a833bf1911d

rq turtle/ttl

TODO

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 ?date ?previous ?previousLabel ?next ?nextLabel ?imdb WHERE {
  ?item wdt:P179 wd:Q1135966 .
  MINUS { ?item wdt:P31 wd:Q3464665 } .
  OPTIONAL { ?item wdt:P1191 ?date } .
  OPTIONAL { ?item wdt:P155 ?previous } .
  OPTIONAL { ?item wdt:P156 ?next } .
  OPTIONAL { ?item wdt:P345 ?imdb } .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} ORDER BY ?date LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date"):::projected v5("?imdb"):::projected v2("?item"):::projected v4("?next"):::projected v3("?previous"):::projected c2(["wd:Q1135966"]):::iri c10(["bd:serviceParam"]):::iri c12(["en"]):::literal c4(["wd:Q3464665"]):::iri v2 --"wdt:P179"--> c2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P31"--> c4 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1191".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P155".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P156".-> v4 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P345".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end