Property talk:P735/Latest items with no given names

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/> 
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT ?item ?qid WHERE {
   ?item wdt:P31 wd:Q5 . 
          OPTIONAL {?item wdt:P735 ?givenname} .
          FILTER (!bound(?givenname)) .  
   BIND (xsd:integer(STRAFTER(str(?item), "Q")) AS ?qid)
   FILTER (?qid > 21000000)
} ORDER BY DESC(?qid) LIMIT 100

Run this
When transcluded from a wiki page, the query above will be turned into a URL suitable to include in a link

Return to "P735/Latest items with no given names" page.