query-7a73e125bee7b0f4770cbdac2341f8eb

rq turtle/ttl

Propertiesinstance of (P31)

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 DISTINCT ?person ?personLabel
WHERE {
  ?person wdt:P31 wd:Q5;
          rdfs:label ?personLabel;
  FILTER (LANG(?personLabel) = 'en')
}
LIMIT 100

Query found at

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