query-5b087465dee672ab627a9cfeb6c5150f
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?wpPage ?item
WHERE
{
?item wikibase:statements "0"^^xsd:integer .
?wpPage schema:about ?item;
schema:isPartOf <https://de.wikipedia.org/>.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?wpPage"):::projected
c2(["0^^xsd:integer"]):::literal
c5([https://de.wikipedia.org/]):::iri
v1 --"wikibase:statements"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5