query-18593b858165710ea6195a3a56325fbd

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 } } ."[AUTO_LANGUAGE],en" language:wikibase serviceParam:bd { label:wikibase SERVICE } ?doi P356:wdt ?item { OPTIONAL } [] P1476:wdt ?item { NOT EXISTS FILTER . Q5133623:wd P1433:wdt ?item { WHERE ?doi ?itemDescription ?itemLabel ?item SELECT 13:16, 4 July 2021 (UTC) Jura --- 17:20, 4 July 2021 (UTC)) talk (Trilotat: A follow-up... This is working better than expected! I have been able to update a few hundred items very quickly working through your list. I then went on to find other journals published by SpringerLink plugged into your query. Thanks so much. I'll keep looking for examples and then chasing down others published in that journal. Jura1@ 16:05, 4 July 2021 (UTC)) talk (Trilotat: Thank you! Hey, did you provide an example of items in that specific journal as an example? It works for me, but I was hoping for ALL journals. If you limited to items that are scholarly articles, that might limit some. Did you limit to a specific journal because otherwise it times out? Thanks again, I can address these pretty quickly now so thank you so much. Jura1@For the query, I used that journal as it was in your sample. Apparently "10.1023" could be any Springer publication. The below is probably closer to your question:

Use at

PREFIX mwapi: <http://wikiba.se/ontology#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?instance_of ?instance_ofLabel
WHERE
{
  BIND ( "10.1023/A" as ?search_string )

  SERVICE wikibase:mwapi
  {
    bd:serviceParam wikibase:endpoint "www.wikidata.org" .
    bd:serviceParam wikibase:api "Generator" .
    bd:serviceParam mwapi:generator "search" .
    bd:serviceParam mwapi:gsrsearch ?search_string .
    bd:serviceParam mwapi:gsrlimit "max" .    
    bd:serviceParam mwapi:gsrnamespace "0" .    
    ?item wikibase:apiOutputItem mwapi:title  .
  }
  FILTER( BOUND(?item) )
  ?item wdt:P356 ?doi 
  FILTER ( CONTAINS(?doi, ?search_string) )
  FILTER NOT EXISTS { ?item wdt:P1476 [] }   
  OPTIONAL { ?item wdt:P31 ?instance_of }
  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") v4("?instance_of"):::projected v1("?item"):::projected v4("?search_string") a1((" ")) c5(["www.wikidata.org"]):::literal c12(["max"]):::literal c14(["0"]):::literal c9(["search"]):::literal c3(["bd:serviceParam"]):::iri c21(["#91;AUTO_LANGUAGE#93;,en"]):::literal c16(["mwapi:title"]):::iri c7(["Generator"]):::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 f1[["contains(?doi,?search_string)"]] f1 --> v2 f1 --> v4 f2[["bound(?item)"]] f2 --> v1 bind3[/"'10.1023/A'"/] bind3 --as--o v4 subgraph s1["http://wikiba.se/ontology#mwapi"] style s1 stroke-width:4px; c3 --"mwapi:endpoint"--> c5 c3 --"mwapi:api"--> c7 c3 --"mwapi:generator"--> c9 c3 --"mwapi:gsrsearch"--> v4 c3 --"mwapi:gsrlimit"--> c12 c3 --"mwapi:gsrnamespace"--> c14 v1 --"mwapi:apiOutputItem"--> c16 end v1 --"wdt:P356"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P31".-> v4 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c3 --"mwapi:language"--> c21 end