query-9d1e971c98ca55d34bf94d2fc3539ef5
¿De qué color es el puente Golden Gate?Como existe la propiedad P462 color y sé que el identificador del Golden Gate Q44440
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 ?color ?colorLabel
WHERE {
wd:Q44440 wdt:P462 ?color
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?color"):::projected
c4(["bd:serviceParam"]):::iri
c6(["es,en"]):::literal
c1(["wd:Q44440"]):::iri
c1 --"wdt:P462"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end