query-3b7baebe1db1248c948fc6841e666a24
PS. You can get some of the item: 23:24, 5 December 2020 (UTC)) talk (Dipsacus fullonum can make the dump. --WDumper and then do a grep or other form of text search for ODNB. (Q13442814)scholarly article I don't think that it is possible in under 60 seconds, so a query will timeout. I would download a partial database dump with all
Use at
- https://query.wikidata.org/sparql
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 DISTINCT ?item ?itemLabel ?doi
WHERE
{
SERVICE wikibase:mwapi
{
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch "ODNB haswbstatement:P356 haswbstatement:P31=Q13442814".
?item wikibase:apiOutputItem mwapi:title.
}
?item wdt:P356 ?doi .
FILTER CONTAINS ( ?doi, "ODNB" )
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;
v1("?doi"):::projected
v2("?item"):::projected
c7(["www.wikidata.org"]):::literal
c3(["bd:serviceParam"]):::iri
c5(["Search"]):::literal
c9(["ODNB haswbstatement:P356 haswbstatement:P31=Q13442814"]):::literal
c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c11(["mwapi:title"]):::iri
f0[["contains(?doi,'ODNB')"]]
f0 --> v1
subgraph s1["http://wikiba.se/ontology#mwapi"]
style s1 stroke-width:4px;
c3 --"mwapi:api"--> c5
c3 --"mwapi:endpoint"--> c7
c3 --"mwapi:srsearch"--> c9
v2 --"mwapi:apiOutputItem"--> c11
end
v2 --"wdt:P356"--> v1
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c3 --"mwapi:language"--> c15
end