query-f480d0c81697c80301ac7919b5f971b2

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?Insel ?InselLabel WHERE {

  ?Insel wdt:P31 wd:Q23442.
  ?Insel rdfs:label ?InselLabel. filter(lang(?InselLabel)="en")
}
order by ?InselLabel
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?Insel"):::projected v1("?InselLabel"):::projected c3(["wd:Q23442"]):::iri f0[["?InselLabel = 'en'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"rdfs:label"--> v1