query-c72fc22f027c1398aa03658da203934c

rq turtle/ttl

Given names shown with family name item SELECT ?item ?itemLabel ?nameLabel

WHERE {?item wdt:P31 wd:Q5; wdt:P735 ?name. ?name wdt:P31 wd:Q101352.

   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   }

LIMIT 100

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Given names shown with family name item
SELECT ?item ?itemLabel ?nameLabel

WHERE {?item wdt:P31 wd:Q5;
             wdt:P735 ?name.
       ?name wdt:P31 wd:Q101352.

       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       }
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?name") c4(["wd:Q101352"]):::iri c6(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P735"--> v2 v2 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end