query-77395e5fa57a4c39349cda7d27d02d6b

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel ?itemDescription where { 
    ?item wdt:P31 wd:Q5; wdt:P106 wd:Q1028181; rdfs:label ?label .
    FILTER( LANG(?label) = "nl" ) .
    FILTER( CONTAINS(LCASE(?label), "rembrandt") ) .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "nl" } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label") c6(["wd:Q1028181"]):::iri c9(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri c2(["nl"]):::literal f0[["contains(lower-case(?label),'rembrandt')"]] f0 --> v1 f1[["?label = 'nl'"]] f1 --> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P106"--> c6 v2 --"rdfs:label"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c2 end