query-fe5b5d0624df42e0c65a603cb5fb283f
Since the mwapi calls return a maximum of 10000 results, only part of the works with "literature review" in the title are being returned. To get more of these, the query would have to be re-run after some tagging, or split into a set of subqueries, e.g. as per
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 wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item #?title
WHERE {
hint:Query hint:optimizer "None".
{ SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch ""literature review" and the haswbstatement:P31=Q13442814".
?page_title wikibase:apiOutput mwapi:title.
}
}
UNION
{ SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch ""literature review" -and the haswbstatement:P31=Q13442814".
?page_title wikibase:apiOutput mwapi:title.
}
}
UNION
{ SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch ""literature review" and -the haswbstatement:P31=Q13442814".
?page_title wikibase:apiOutput mwapi:title.
}
}
UNION
{ SERVICE wikibase:mwapi {
bd:serviceParam wikibase:api "Search";
wikibase:endpoint "www.wikidata.org";
mwapi:srsearch ""literature review" -and -the haswbstatement:P31=Q13442814".
?page_title wikibase:apiOutput mwapi:title.
}
}
BIND(IRI(CONCAT(STR(wd:), ?page_title)) AS ?item)
#FILTER NOT EXISTS { ?item wdt:P921 wd:Q2412849. }
?item wdt:P31 wd:Q13442814;
wdt:P1476 ?title.
FILTER CONTAINS(LCASE(?title), "literature").
FILTER CONTAINS(LCASE(?title), "review").
}
# LIMIT 10000