query-764222eb9c6ed746b5458cffa60a817b
: (ec) this may take you a bit further.Ecritures@Not exactly what you asked for, but all items that do have an article at nl-wiki and are present in the Amnesty list:
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 ?itemLabel ?ietsLabel where { ?item wdt:P5008 wd:Q53764742
FILTER EXISTS {?wen schema:about ?item . ?wen schema:inLanguage "nl" }
{service wikibase:label {bd:serviceParam wikibase:language "nl" } }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item")
v1("?wen")
c7(["bd:serviceParam"]):::iri
c3(["nl"]):::literal
c5(["wd:Q53764742"]):::iri
f0[[" "]]
subgraph f0e0["Exists Clause"]
e0v1 --"schema:about"--> e0v2
e0v1 --"schema:inLanguage"--> e0c3
e0v2("?item"):::projected
e0v1("?wen"):::projected
e0c3(["nl"]):::literal
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
f0 --> c2
f0 --> c3
v1 --"schema:about"--> v2
v1 --"schema:inLanguage"--> c3
v2 --"wdt:P5008"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c3
end