query-516e7f4aed25a17fbc4d36747904a7c4
Query
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item wdt:P31 wd:Q5 .
?sitelink schema:about ?item .
?sitelink schema:inLanguage "nl" .
?sitelink schema:isPartOf <https://nl.wikipedia.org/>
MINUS { ?item wdt:P106 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?sitelink")
a1((" "))
c10(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c12(["nl,en"]):::literal
c7([https://nl.wikipedia.org/]):::iri
c5(["nl"]):::literal
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:inLanguage"--> c5
v2 --"schema:isPartOf"--> c7
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P106"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end