query-6ce5f52a6a9290e8b4a112e7795b44a7
Museum paintings
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 ?painting ?paintingLabel ?creatorLabel ?locationLabel WHERE {
# BIND(wd:Q762 AS ?creator).
#Louvre
#BIND(wd:Q19675 AS ?location).
#Musee d'Orsay
BIND(wd:Q23402 AS ?location).
# a painting
?painting wdt:P31/wdt:P279* wd:Q3305213 .
# painted by ...
?painting wdt:P170 ?creator .
# located in the Louvre
?painting wdt:P276 ?location .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} ORDER BY ?creatorLabel # LIMIT 2000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?creator")
v1("?creatorLabel"):::projected
v2("?location")
v3("?painting"):::projected
a1((" "))
c3(["wd:Q3305213"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
bind0[/"'wd:Q23402'"/]
bind0 --as--o v2
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v3 --"wdt:P170"--> v4
v3 --"wdt:P276"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end