query-c560d96b0445a377e51e58a7911b660d
title:Objects in the Khalili Collections with an ArtUK ID SELECT ?item ?itemLabel ?collectionLabel (URI(CONCAT("https://artuk.org/discover/artworks/",?id)) as ?artuk) ?khalili WHERE { ?item wdt:P195 ?collection. ?collection wdt:P361 wd:Q63160499. OPTIONAL {?item wdt:P973 ?khalili} ?item wdt:P1679 ?id SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } }
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#>
#title:Objects in the Khalili Collections with an ArtUK ID
SELECT ?item ?itemLabel ?collectionLabel (URI(CONCAT("https://artuk.org/discover/artworks/",?id)) as ?artuk) ?khalili WHERE {
?item wdt:P195 ?collection. ?collection wdt:P361 wd:Q63160499.
OPTIONAL {?item wdt:P973 ?khalili}
?item wdt:P1679 ?id
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;
v5("?artuk")
v2("?collection")
v4("?id"):::projected
v1("?item"):::projected
v3("?khalili"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q63160499"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P195"--> v2
v2 --"wdt:P361"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P973".-> v3
end
v1 --"wdt:P1679"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end
bind0[/"concat('https://artuk.org/discover/artworks/',?id)"/]
v4 --o bind0
bind0 --as--o v5