query-799d3ade413a37e4b9cbe4fb017e445c
Wikidata properties without a label in AfrikaansAll Wikidata properties (which are not identifiers) without a label in Afrikaans! Help us translate! Thanks to Harmonia_Amanda for the query.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription
WHERE {
?item wdt:P31/wdt:P279* wd:Q18616576 .
MINUS { ?item wdt:P31/wdt:P279* wd:Q19847637 .}
FILTER(NOT EXISTS {
?item rdfs:label ?lang_label.
FILTER(LANG(?lang_label) = "af")
})
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,nl,fr,de,it,es,no,pt". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?lang_label")
a1((" "))
a2((" "))
c6(["wd:Q19847637"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en,nl,fr,de,it,es,no,pt"]):::literal
c5(["wd:Q18616576"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0f0[["?lang_label = 'af'"]]
e0f0 --> e0v1
e0v2 --"rdfs:label"--> e0v1
e0v2("?item"):::projected
e0v1("?lang_label"):::projected
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> v3
f0 --> c2
f1[["?lang_label = 'af'"]]
f1 --> v2
v3 --"rdfs:label"--> v2
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P31"--> a2
a2 --"wdt:P279"--> c6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end