query-4b7f85010282cef4aebd02fae92c7a86
Label service in chunks
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?mbvalue ?dcvalue WHERE {
{
SELECT ?item ?mbvalue ?dcvalue WHERE
{
?item wdt:P434 ?mbvalue .
?item wdt:P1953 ?dcvalue .
}
ORDER BY ?mbvalue ?dcvalue
OFFSET 150000
LIMIT 50000
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?dcvalue"):::projected
v3("?item"):::projected
v1("?mbvalue"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
v3 --"wdt:P434"--> v1
v3 --"wdt:P1953"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end