query-109c8d9674f413c4e4af3d4eeb42e03e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?name ?text {
[] schema:about ?item; schema:isPartOf <https://de.wikipedia.org/>; schema:name ?name .
?item skos:altLabel ?text .
?item rdfs:label ?text .
FILTER(LANG(?text) = 'de') .
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?name"):::projected
v1("?text"):::projected
a1((" "))
c4([https://de.wikipedia.org/]):::iri
f0[["?text = 'de'"]]
f0 --> v1
a1 --"schema:about"--> v2
a1 --"schema:isPartOf"--> c4
a1 --"schema:name"--> v3
v2 --"skos:altLabel"--> v1
v2 --"rdfs:label"--> v1