query-0bf2e7f6d08b848c34de0ba472ce8a4e
Propertiesinstance of (P31)country (P17)located in the administrative territorial entity (P131)
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 ?item ?itemLabel ?itemDescription ?locationLabel WHERE {
?item wdt:P31 wd:Q16970.
?item wdt:P17 wd:Q31.
OPTIONAL {?item wdt:P131 ?location}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,nl,fr,de,it,lu,es,no,pt". }
FILTER(NOT EXISTS {
?item rdfs:label ?lang_label.
FILTER((LANG(?lang_label)) = "en")
})
}
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")
v4("?location")
c11(["en,nl,fr,de,it,lu,es,no,pt"]):::literal
c9(["bd:serviceParam"]):::iri
c6(["wd:Q31"]):::iri
c4(["wd:Q16970"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0f0[["?lang_label = 'en'"]]
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 = 'en'"]]
f1 --> v2
v3 --"rdfs:label"--> v2
v3 --"wdt:P31"--> c4
v3 --"wdt:P17"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P131".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end