query-b956ee4ea9c5986e62c9f15a03908012

rq turtle/ttl

(Q19595382)Wikidata property for authority control for people You might want to check those. Same query for all humans times out. To just get a list of

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#>
SELECT ?propertyLabel ?propertyDescription WHERE { 
    ?property wikibase:propertyType wikibase:ExternalId .
    ?property wdt:P31 wd:Q19595382 .
    ?property wikibase:claim ?propertyclaim .
    SERVICE wikibase:label {            # ... include the labels
        bd:serviceParam wikibase:language "en" .
    }
} ORDER BY ?propertyLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?property") v1("?propertyLabel"):::projected v3("?propertyclaim") c7(["bd:serviceParam"]):::iri c4(["wd:Q19595382"]):::iri c9(["en"]):::literal c2(["wikibase:ExternalId"]):::iri v2 --"wikibase:propertyType"--> c2 v2 --"wdt:P31"--> c4 v2 --"wikibase:claim"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end