query-64bb2dfe98f716c558dd26f1d3188d3e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?page WHERE {
?item wikibase:statements 1 .
?item ((wdt:P646+)|(wdt:P2671+)) ?PP.
?article schema:about ?item.
?article schema:isPartOf <https://en.wikipedia.org/>.
?article schema:name ?page.
}
LIMIT 200000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?PP")
v3("?article")
v1("?item"):::projected
v4("?page"):::projected
c2(["1^^xsd:integer"]):::literal
c7([https://en.wikipedia.org/]):::iri
v1 --"wikibase:statements"--> c2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P2671"--> v2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P646"--> v2
end
union0r <== or ==> union0l
end
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c7
v3 --"schema:name"--> v4