query-a0f190dbf274bb583933d04f5e7ea4a5
日本の会社または企業で日本語ラベルが付与されていないもの
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 WHERE {
VALUES ?organizationType {
wd:Q783794
wd:Q4830453
}
?item wdt:P31 ?organizationType;
wdt:P17 wd:Q17.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
FILTER(NOT EXISTS {
?item rdfs:label ?lang_label.
FILTER((LANG(?lang_label)) = "ja")
})
}
ORDER BY (?item)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?lang_label")
v3("?organizationType")
c5(["wd:Q17"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0f0[["?lang_label = 'ja'"]]
e0f0 --> e0v1
e0v2 --"rdfs:label"--> e0v1
e0v2("?item"):::projected
e0v1("?lang_label"):::projected
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> v1
f0 --> c2
f1[["?lang_label = 'ja'"]]
f1 --> v2
v1 --"rdfs:label"--> v2
bind2[/VALUES ?organizationType/]
bind2-->v3
bind20(["wd:Q783794"])
bind20 --> bind2
bind21(["wd:Q4830453"])
bind21 --> bind2
v1 --"wdt:P31"--> v3
v1 --"wdt:P17"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end