query-d325952f7a7da3b25c258536db3c7c91

rq turtle/ttl

Help needed in cleaning creative works with author name stringHi all! The following items

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 ?str 
{
  ?item wdt:P31 wd:Q17537576 .
  ?item wdt:P2093 ?str .
  ?item wdt:P1417 ?brit .
  ?item wikibase:statements 3 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?str

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?brit") v2("?item"):::projected v1("?str"):::projected c6(["3^^xsd:integer"]):::literal c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q17537576"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P2093"--> v1 v2 --"wdt:P1417"--> v3 v2 --"wikibase:statements"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end