query-5363758dae4833ad9f5912b0a71f8646

rq turtle/ttl


many familynames

----------------------------------------------------------

SELECT ?item ?itemLabel WHERE { SERVICE bd:slice { ?item wdt:P31 wd:Q101352 . bd:serviceParam bd:slice.offset 0 . bd:serviceParam bd:slice.limit 2000 . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". } }

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#>
#----------------------------------------------------------
# many familynames
#----------------------------------------------------------
SELECT ?item ?itemLabel 
WHERE 
{
  SERVICE bd:slice {
    ?item wdt:P31 wd:Q101352  .
    bd:serviceParam bd:slice.offset 0 .
    bd:serviceParam bd:slice.limit 2000 .
  }      
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". } 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected c6(["0^^xsd:integer"]):::literal c11(["#91;AUTO_LANGUAGE#93;,de"]):::literal c3(["wd:Q101352"]):::iri c4(["bd:serviceParam"]):::iri c8(["2000^^xsd:integer"]):::literal subgraph s1["http://www.bigdata.com/rdf#slice"] style s1 stroke-width:4px; v1 --"wdt:P31"--> c3 c4 --"bd:slice.offset"--> c6 c4 --"bd:slice.limit"--> c8 end subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c11 end