query-67be8756d491d1ba171a8fd2d0ffaa36
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item p:P225/pq:P574 ?publicationdate.
FILTER(year(?publicationdate) = 1758)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?publicationdate")
a1((" "))
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
f0[["year-from-dateTime(?publicationdate) = '1758^^xsd:integer'"]]
f0 --> v1
v2 --"p:P225"--> a1
a1 --"p:qualifier/P574"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end