query-6e353de6534cf80251a1ee3bd4c19e4a

rq turtle/ttl

Motivation, or this (fairly incomplete) query: Category 18th century in German Wikisource, often with digitized editions. Corresponding Wikidata items should be linked to this bibliography by the VD18 number. For examples of works already in Wikimedia projects see (Q1739957)VD 18 All printed material published in the 18th century in Germany and other German speaking areas is cataloged in

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 ?p ?pLabel ?year WHERE {
  ?p wdt:P31/wdt:P279* wd:Q571 .
  ?p wdt:P577 ?date .  
  ?p wdt:P407 wd:Q188 .
  FILTER (year(?date) >= 1701) .
  FILTER (year(?date) <= 1800) .
  BIND (year(?date) AS ?year) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date") v2("?p"):::projected v3("?year"):::projected a1((" ")) c12(["de"]):::literal c10(["bd:serviceParam"]):::iri c8(["wd:Q188"]):::iri c5(["wd:Q571"]):::iri f0[["year-from-dateTime(?date) <= '1800^^xsd:integer'"]] f0 --> v1 f1[["year-from-dateTime(?date) >= '1701^^xsd:integer'"]] f1 --> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 v2 --"wdt:P577"--> v1 v2 --"wdt:P407"--> c8 bind2[/"year-from-dateTime(?date)"/] v1 --o bind2 bind2 --as--o v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end