query-a7df0eb942a25588cd145881a48f07f9

rq turtle/ttl

Journals publishing articles with a DOI (P356)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?title ?title_old WHERE {
   ?item wdt:P356 ?doi .
   ?item wdt:P1433/wdt:P1476 ?title .
   OPTIONAL {?item wdt:P1433/wdt:P357 ?title_old } .
}
ORDER BY ASC(?title)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?doi") v2("?item") v1("?title"):::projected v4("?title_old"):::projected a1((" ")) a2((" ")) v2 --"wdt:P356"--> v3 v2 --"wdt:P1433"--> a1 a1 --"wdt:P1476"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1433".-> a2 a2 --"wdt:P357"--> v4 end