query-70675b6fb3bbb1cf22f3502b3f8c6c20

rq turtle/ttl

title:Paintings in the Khalili Collections SELECT ?item ?itemLabel ?collectionLabel ?inv ?image WHERE { ?item wdt:P31 wd:Q3305213. ?item wdt:P195 ?collection. ?collection wdt:P361 wd:Q63160499. ?item wdt:P217 ?inv. OPTIONAL {?item wdt:P18 ?image} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?collectionLabel ?inv

Use at

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:Paintings in the Khalili Collections
SELECT ?item ?itemLabel ?collectionLabel ?inv ?image WHERE {
  ?item wdt:P31 wd:Q3305213.
  ?item wdt:P195 ?collection. ?collection wdt:P361 wd:Q63160499.
  ?item wdt:P217 ?inv.
  OPTIONAL {?item wdt:P18 ?image}
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?collectionLabel ?inv

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?collection") v1("?collectionLabel"):::projected v5("?image"):::projected v2("?inv"):::projected v3("?item"):::projected c2(["wd:Q3305213"]):::iri c9(["bd:serviceParam"]):::iri c5(["wd:Q63160499"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal v3 --"wdt:P31"--> c2 v3 --"wdt:P195"--> v4 v4 --"wdt:P361"--> c5 v3 --"wdt:P217"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P18".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end