query-0342d555bf09762693469bff06cfb2cd

rq turtle/ttl

Query by P2093 string with Open Refine. How can I query my needed list, sth. like this: (P50)author by the new item with (P2093)author name string Hi, I'm writing a lot of articles about female scientists recently, and I'm happy about how many scientific articles exist about every single of them. I'd like to replace hundreds of equals "Karin Loser" (P2093)author name string WHERE (Q13442814)scholarly article SELECT all 14:10, 28 March 2020 (UTC)) talk (Elya? Thanks for your help (Pls. ping me for an answer). --

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 ?item ?itemLabel ?itemDescription
WHERE
{
    ?item wdt:P31 wd:Q13442814 . 
    ?item wdt:P2093 "Karin Loser" .
    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; v1("?item"):::projected c2(["wd:Q13442814"]):::iri c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["Karin Loser"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P2093"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end