query-0f279bf58e0cbcf9393d7d35d4211d40
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?article ?itemLabel WHERE {
{
SELECT ?item ?article WHERE {
?item ^schema:about ?article .
?article schema:isPartOf <https://ar.wikipedia.org/> .
} LIMIT 1000 OFFSET 200000
}.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ar" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?item"):::projected
c7(["ar"]):::literal
c5(["bd:serviceParam"]):::iri
c3([https://ar.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end