query-6566643306b3c3d3c1222bd7115c7b5a
FILTER
Use at
- https://query.wikidata.org/sparql
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 ?livre ?livreLabel WHERE {
?livre wdt:P50 wd:Q535 .
?livre wdt:P577 ?date .
FILTER ( year(?date) = 1909 )
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;
v1("?date")
v2("?livre"):::projected
c6(["bd:serviceParam"]):::iri
c3(["wd:Q535"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["year-from-dateTime(?date) = '1909^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P50"--> c3
v2 --"wdt:P577"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end