query-86fe594e409fff98728c95d706f8f72b

rq turtle/ttl

native label (P1705) and official name (P1448)Hi, ) NavelGazer: (biggest users of this property according to MisterSynergy, Harmonia Amanda, Adert, Letzi', Fexpr, Jura1@? The description are overlapping « label for the items in their official language (P37) or their original language (P364) » and « official name of the subject in its official language(s) » and indeed a request shows that a lot of item have the same value with both property (and same as the label itself...) : (P1448)official name and when should we use (P1705)native label When should we use

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?original ?official WHERE {
    ?item wdt:P1705 ?original ; wdt:P1448 ?official .
    filter ( ?original = ?official)
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v2("?official"):::projected v1("?original"):::projected c4(["bd:serviceParam"]):::iri c6(["fr"]):::literal f0[["?original = ?official"]] f0 --> v1 f0 --> v2 v3 --"wdt:P1705"--> v1 v3 --"wdt:P1448"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end