query-ba8dc1e61ca4f81de17ddfd73fa7e8f7

rq turtle/ttl

Query timing out where conditions are met to certify that work is in Public Domain: (P6216)copyright status I have a query looking for items of works missing

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 distinct ?item ?dop ?mdod   ?itemLabel 
where { 
  # look for items of type "work" or "data" (or their children)
  ?item wdt:P31/wdt:P279* ?pq . 
  VALUES ?pq { wd:Q386724  wd:Q42848 } 

  ?item wdt:P577 ?dop . # get date of publication

  # Date of death of the last surviving creator
  {SELECT ?item  (max(?dod) as ?mdod) 
  where {
    ?item wdt:P50|wdt:P170|wdt:P655|wdt:P84|wdt:P110|wdt:P287 ?creator .
    ?creator wdt:P570 ?dod .
  }  group by ?item  }.

  # Add constraints
  FILTER(?dop  < "1924-01-01"^^xsd:dat) .
  FILTER(?mdod < "1918-01-01"^^xsd:dat) .
  FILTER NOT EXISTS {?item wdt:P6216 [] } . 

  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; v5("?creator") v6("?dod") v3("?dop"):::projected v1("?item"):::projected v7("?mdod"):::projected v5("?pq") a1((" ")) a2((" ")) c15(["bd:serviceParam"]):::iri c17(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P6216"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 v1 --"wdt:P6216"--> a1 f1[["?mdod < s1918-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f1 --> v7 f2[["?dop < s1924-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f2 --> v3 v1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> v5 bind3[/VALUES ?pq/] bind3-->v5 bind30(["wd:Q386724"]) bind30 --> bind3 bind31(["wd:Q42848"]) bind31 --> bind3 v1 --"wdt:P577"--> v3 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; subgraph union1[" Union "] subgraph union1l[" "] style union1l fill:#abf,stroke-dasharray: 3 3; subgraph union2[" Union "] subgraph union2l[" "] style union2l fill:#abf,stroke-dasharray: 3 3; subgraph union3[" Union "] subgraph union3l[" "] style union3l fill:#abf,stroke-dasharray: 3 3; subgraph union4[" Union "] subgraph union4l[" "] style union4l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P287"--> v5 end subgraph union4r[" "] style union4r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P110"--> v5 end union4r <== or ==> union4l end end subgraph union3r[" "] style union3r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P84"--> v5 end union3r <== or ==> union3l end end subgraph union2r[" "] style union2r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P655"--> v5 end union2r <== or ==> union2l end end subgraph union1r[" "] style union1r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P170"--> v5 end union1r <== or ==> union1l end end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P50"--> v5 end union0r <== or ==> union0l end v5 --"wdt:P570"--> v6 bind5[/"max(?dod)"/] v6 --o bind5 bind5 --as--o v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c15 --"wikibase:language"--> c17 end