query-3ca3c9d7add35534c287eb9c741bb0eb
Otra consulta WDQS relacionada:
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#>
SELECT ?BIC ?BICLabel ?situadoLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
?BIC wdt:P1435 wd:Q23712;
(wdt:P131*) wd:Q5783.
MINUS { SELECT ?BIC WHERE { ?BIC wdt:P808 ?taca. } }
MINUS { SELECT ?BIC WHERE { ?BIC wdt:P8425 ?taca. } }
OPTIONAL { ?BIC wdt:P131 ?situado. }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?BIC"):::projected
v3("?situado")
v2("?taca")
c2(["bd:serviceParam"]):::iri
c6(["wd:Q23712"]):::iri
c8(["wd:Q5783"]):::iri
c4(["es"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P1435"--> c6
v1 --"wdt:P131"--> c8
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P808"--> v2
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P8425"--> v2
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P131".-> v3
end