query-939bcc4eb21cbcef78b1c34ee381d80d

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
select ?article ?doi {
  values (?postfix) { 
    ("")("A")("B")("C")("D")("E")("F")("G")("H")
        ("I")("J")("K")("L")("M")("N")("O")("P")
        ("Q")("R")("S")("T")("U")("V")
  }
  ?number wdt:P31 wd:Q21199 .
  ?number wdt:P1181 ?value .
  filter (?value < 2500)  .
  bind (concat("10.3133/MF", str(?value), ?postfix) as ?doi)
  ?article wdt:P356 ?doi
# minus { ?article wdt:P1433 wd:Q62121758 }
} order by ?value ?postfix

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?article"):::projected v4("?doi"):::projected v3("?number") v3("?postfix") v1("?value") c3(["wd:Q21199"]):::iri f0[["?value < '2500^^xsd:integer'"]] f0 --> v1 bind1[/VALUES ?postfix/] bind1-->v3 bind10([""]) bind10 --> bind1 bind11(["A"]) bind11 --> bind1 bind12(["B"]) bind12 --> bind1 bind13(["C"]) bind13 --> bind1 bind14(["D"]) bind14 --> bind1 bind15(["E"]) bind15 --> bind1 bind16(["F"]) bind16 --> bind1 bind17(["G"]) bind17 --> bind1 bind18(["H"]) bind18 --> bind1 bind19(["I"]) bind19 --> bind1 bind110(["J"]) bind110 --> bind1 bind111(["K"]) bind111 --> bind1 bind112(["L"]) bind112 --> bind1 bind113(["M"]) bind113 --> bind1 bind114(["N"]) bind114 --> bind1 bind115(["O"]) bind115 --> bind1 bind116(["P"]) bind116 --> bind1 bind117(["Q"]) bind117 --> bind1 bind118(["R"]) bind118 --> bind1 bind119(["S"]) bind119 --> bind1 bind120(["T"]) bind120 --> bind1 bind121(["U"]) bind121 --> bind1 bind122(["V"]) bind122 --> bind1 v3 --"wdt:P31"--> c3 v3 --"wdt:P1181"--> v1 bind2[/"concat('10.3133/MF',str(?value),?postfix)"/] v1 --o bind2 v3 --o bind2 bind2 --as--o v4 v5 --"wdt:P356"--> v4