query-afda14fe12c8457df9cb683965df35b5

rq turtle/ttl

Items with DOI (P356) that start with 10.1023/A: without a Label or a title (P1476) is such an item. Q58391055. I'm not sure what is causing this. That's a problem far from my skills to resolve. I have followed the DOI of these items and added the journal article's title to the item's label and title, but there are so many. I'm not even sure one couldn't create yet another item with that DOI using SourceMD (resulting in another item to fix). Example, (P1476)title that start with 10.1023/A: without a Label or a (P356)DOI There are quite a few items with , I can create a table to generate a correction through QuickStatement. (P1476)title that start with 10.1023/A: without a Label or a (P356)DOI Can someone create a list for me that has the QID and the DOI (as a link, preferably) for those items with 01:53, 4 July 2021 (UTC)) talk (TrilotatIf anyone can prevent this from continuing to happen, it would be nice to think there's a list that I can correct and it won't continue to add new items without a title. Thank you, 13:16, 4 July 2021 (UTC) Jura has a title-statement, but that doesn't really help. Looks like some cleanup is needed. --- Q57554778 finds some .. https://www.wikidata.org/w/index.php?search=10.1023&fulltext=1&ns0=1: (P1433)published in BTW, you could also try starting out from

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 ?doi
WHERE
{
    ?item wdt:P1433 wd:Q5133623 . 
    FILTER NOT EXISTS { ?item wdt:P1476 [] } 
    OPTIONAL { ?item wdt:P356 ?doi }
    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; v2("?doi"):::projected v1("?item"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q5133623"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P1476"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 v1 --"wdt:P1476"--> a1 v1 --"wdt:P1433"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P356".-> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end