query-dbd4302d6f8c3c4d8dc6237261d3d306

rq turtle/ttl

902 (auxiliary) WFM Dictionary No.

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#>
#Book publication by place, early modern period.
#defaultView:BarChart
SELECT ?placeLabel (Count(?placeLabel) AS ?count)
WHERE
{
  ?book wdt:P31 wd:Q571 .
  ?book wdt:P291 ?place .
  ?book wdt:P577 ?date .
  BIND(YEAR(?date) AS ?year)
  FILTER (1450 < ?year && ?year < 1701)

 SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?placeLabel
ORDER BY ?count

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?book") v7("?count") v5("?date") v4("?place") v6("?placeLabel"):::projected v6("?year") c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c4(["wd:Q571"]):::iri f0[["'1450^^xsd:integer' < ?year?year < '1701^^xsd:integer'"]] f0 --> v6 v3 --"wdt:P31"--> c4 v3 --"wdt:P291"--> v4 v3 --"wdt:P577"--> v5 bind1[/"year-from-dateTime(?date)"/] v5 --o bind1 bind1 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind3[/"count(?placeLabel)"/] v6 --o bind3 bind3 --as--o v7