query-4cd46a23556e4fcd5a258b4580ffbf41
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item ?doi ?ADS_bibcode WHERE {
VALUES ?ADS_bibcode {
"1982PreR...18..237L"
"1990PreR...48..375N"
"2019PreR..325....1D"
"1997Sedim..44...67Z"
}
?item wdt:P819 ?ADS_bibcode.
OPTIONAL {?item wdt:P356 ?doi. }
OPTIONAL { ?item wdt:P1476 ?title. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ADS_bibcode"):::projected
v3("?doi"):::projected
v2("?item"):::projected
v4("?title")
bind0[/VALUES ?ADS_bibcode/]
bind0-->v1
bind00(["1982PreR...18..237L"])
bind00 --> bind0
bind01(["1990PreR...48..375N"])
bind01 --> bind0
bind02(["2019PreR..325....1D"])
bind02 --> bind0
bind03(["1997Sedim..44...67Z"])
bind03 --> bind0
v2 --"wdt:P819"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P356".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1476".-> v4
end