query-1f263891333ba11db49e0681bb6ebd43
nuclis d'entitat singular de poblaciĆ³ a altura 0 msnm SELECT DISTINCT ?item ?itemLabel ?alt WHERE { ?item wdt:P31 wd:Q127386657. ?item wdt:P2044 ?alt. FILTER(?alt = 0) SERVICE wikibase:label {bd:serviceParam wikibase:language 'ca' . } }
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 bd: <http://www.bigdata.com/rdf#>
# nuclis d'entitat singular de poblaciĆ³ a altura 0 msnm
SELECT DISTINCT ?item ?itemLabel ?alt WHERE {
?item wdt:P31 wd:Q127386657.
?item wdt:P2044 ?alt.
FILTER(?alt = 0)
SERVICE wikibase:label {bd:serviceParam wikibase:language 'ca' . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?alt"):::projected
v2("?item"):::projected
c3(["wd:Q127386657"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["ca"]):::literal
f0[["?alt = '0^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P2044"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end