query-20cb64cd916105581bb591a824f9ab94
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?scholarly_article ?published_inLabel ?pubdate ?title WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?scholarly_article wdt:P31 wd:Q13442814;
wdt:P1476 ?title;
wdt:P1433 ?published_in;
wdt:P577 ?pubdate;
wdt:P921 wd:Q131238. #main subject Bacillus subtilis
}
ORDER BY DESC(?pubdate)
LIMIT 400
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?pubdate"):::projected
v4("?published_in")
v2("?scholarly_article"):::projected
v3("?title"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q13442814"]):::iri
c11(["wd:Q131238"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
v2 --"wdt:P1476"--> v3
v2 --"wdt:P1433"--> v4
v2 --"wdt:P577"--> v1
v2 --"wdt:P921"--> c11