query-208c439cefea7209019d350a15cba721
Bias in medicine in all journal indexingEveryone here already expects this but check out this search for law journals (thanks Daniel Mietchen for the query):
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?item ?title (COUNT(?work) AS ?works)
WHERE {
{
SELECT ?item ?title WHERE {
?item wdt:P236 ?issn ;
wdt:P1476 ?title .
FILTER REGEX (LCASE(?title), "(\\blaw|\\blegal|\\court)")
}
} ?work wdt:P1433 ?item .
}
GROUP BY ?item ?title
ORDER BY DESC(?works)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?issn")
v3("?item"):::projected
v2("?title"):::projected
v5("?work"):::projected
v6("?works")
f0[["regex(lower-case(?title),'(\blaw|\blegal|\court)')"]]
f0 --> v2
v3 --"wdt:P236"--> v4
v3 --"wdt:P1476"--> v2
v5 --"wdt:P1433"--> v3
bind2[/"count(?work)"/]
v5 --o bind2
bind2 --as--o v6