query-f09cd8b0dafd76088cc8e159bd7cbe3b

rq turtle/ttl

Deutsche Entomologische Zeitschrift (Q4037265)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item ?doi ?zoobankpub (SUBSTR(?published1, 1, 10) as ?published) ?volume ?issue ?pages ?title WHERE {  
  ?item wdt:P1433 wd:Q4037265 .
  ?item wdt:P356 ?doi .  
  OPTIONAL {?item wdt:P577 ?published1} .
  OPTIONAL {?item wdt:P478 ?volume} .
  OPTIONAL {?item wdt:P433 ?issue} .
  OPTIONAL {?item wdt:P304 ?pages0} . 
  OPTIONAL {?item wdt:P2007 ?zoobankpub} . 
  OPTIONAL {?item wdt:P1476 ?title} . 
  BIND(REPLACE(?pages0, "-", "–") AS ?pages)
  BIND(strbefore(?pages, "–") as ?startpage)
  BIND(strafter(?pages, "–") as ?endpage)
  FILTER (strStarts(?doi, "10.3897/DEZ"))  
}
ORDER BY ASC(xsd:integer(?volume)) ASC(xsd:integer(?startpage))

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?doi"):::projected v11("?endpage") v6("?issue"):::projected v4("?item"):::projected v10("?pages"):::projected v7("?pages0") v12("?published") v5("?published1"):::projected v11("?startpage") v9("?title"):::projected v1("?volume"):::projected v8("?zoobankpub"):::projected c3(["wd:Q4037265"]):::iri f0[["starts-with(?doi,'10.3897/DEZ')"]] f0 --> v3 v4 --"wdt:P1433"--> c3 v4 --"wdt:P356"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P577".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P478".-> v1 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P433".-> v6 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P304".-> v7 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P2007".-> v8 end subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P1476".-> v9 end bind1[/"replace(?pages0,'-','–')"/] v7 --o bind1 bind1 --as--o v10 bind2[/"substring-before(?pages,'–')"/] v10 --o bind2 bind2 --as--o v11 bind3[/"substring-after(?pages,'–')"/] v10 --o bind3 bind3 --as--o v11 bind4[/"substring(?published1,'1^^xsd:integer','10^^xsd:integer')"/] v5 --o bind4 bind4 --as--o v12