query-7a3701882b128e82b93bbd2af548a216

rq turtle/ttl

and I have my query to select a list of items of interest

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#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription WHERE {
    ?item wdt:P31 wd:Q3305213 ; # Get items that are instances of painting
          wdt:P170 wd:Q5598 ; # By creator Rembrandt
          wdt:P195/wdt:P361* ?collection . # That are in some collection

    SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} limit 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?collection") v1("?item"):::projected a1((" ")) c2(["wd:Q3305213"]):::iri c8(["bd:serviceParam"]):::iri c4(["wd:Q5598"]):::iri c10(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P170"--> c4 v1 --"wdt:P195"--> a1 a1 --"wdt:P361"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end