query-9334f1a883676990a63a6bae0ab6f9de
tableaux du musée de Grenoble dont le peintre est décédé depuis plus de 70ans, sans image SELECT ?item ?itemLabel ?inv ?creator ?creatorLabel ?date_deces ?inception ?image WHERE { ?item wdt:P195 wd:Q1952944. ?item wdt:P31 wd:Q3305213. ?item wdt:P170 ?creator. OPTIONAL { ?item wdt:P217 ?inv. } OPTIONAL { ?item wdt:P571 ?inception. } OPTIONAL { ?item wdt:P18 ?image. } OPTIONAL { ?creator wdt:P570 ?date_deces. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } FILTER(!BOUND(?image)) FILTER (year(?date_deces) < 1950). } ORDER BY ?creator
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#>
#tableaux du musée de Grenoble dont le peintre est décédé depuis plus de 70ans, sans image
SELECT ?item ?itemLabel ?inv ?creator ?creatorLabel ?date_deces ?inception ?image WHERE {
?item wdt:P195 wd:Q1952944.
?item wdt:P31 wd:Q3305213.
?item wdt:P170 ?creator.
OPTIONAL { ?item wdt:P217 ?inv. }
OPTIONAL { ?item wdt:P571 ?inception. }
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?creator wdt:P570 ?date_deces. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
FILTER(!BOUND(?image))
FILTER (year(?date_deces) < 1950).
}
ORDER BY ?creator
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?creator"):::projected
v2("?date_deces"):::projected
v3("?image"):::projected
v6("?inception"):::projected
v5("?inv"):::projected
v4("?item"):::projected
c3(["wd:Q1952944"]):::iri
c5(["wd:Q3305213"]):::iri
c12(["bd:serviceParam"]):::iri
c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["year-from-dateTime(?date_deces) < '1950^^xsd:integer'"]]
f0 --> v2
f1[["not bound(?image)"]]
f1 --> v3
v4 --"wdt:P195"--> c3
v4 --"wdt:P31"--> c5
v4 --"wdt:P170"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P217".-> v5
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P571".-> v6
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P18".-> v3
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P570".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c12 --"wikibase:language"--> c14
end