query-34ba77fd254b8814725810c5fc2f1da1
Relaciones entre personajes de Juego de Tronos con código de color para las casas Targaryen, Stark, Lannister y Baratheon
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#>
#defaultView:Graph
SELECT DISTINCT ?personaje_origen ?personaje_origenLabel ?rgb ?edgeLabel ?personaje_destino ?personaje_destinoLabel
WHERE {
{
SELECT ?personaje_origen ?imagen_origen WHERE {
?personaje_origen wdt:P31 wd:Q20086263 .
}
} {
SELECT ?personaje_destino WHERE {
?personaje_destino wdt:P31 wd:Q20086263 .
}
} ?personaje_origen ?relacion ?personaje_destino .
?edge wikibase:directClaim ?relacion.
BIND(IF(EXISTS{?personaje_origen wdt:P53 wd:Q2341521},"000000",
IF(EXISTS{?personaje_origen wdt:P53 wd:Q2739222},"952420",
IF(EXISTS{?personaje_origen wdt:P53 wd:Q2704863},"888888",
IF(EXISTS{?personaje_origen wdt:P53 wd:Q2304848},"978732","ffffff")))) AS ?rgb)
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;
v4("?edge")
v2("?personaje_destino"):::projected
v1("?personaje_origen"):::projected
v3("?relacion")
v5("?rgb"):::projected
c2(["wd:Q20086263"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["es,en"]):::literal
v1 --"wdt:P31"--> c2
v2 --"wdt:P31"--> c2
v1 -->v3--> v2
v4 --"wikibase:directClaim"--> v3
v1 --"wdt:P53"--> null
v1 --"wdt:P53"--> null
v1 --"wdt:P53"--> null
v1 --"wdt:P53"--> null
bind0[/"if( ,'000000',if( ,'952420',if( ,'888888',if( ,'978732','ffffff'))))"/]
subgraph bind0e0["Exists Clause"]
e0v1 --"wdt:P53"--> e0c2
e0v1("?personaje_origen"):::projected
e0c2(["wd:Q2341521"]):::iri
end
bind0--EXISTS--> bind0e0
subgraph bind0e1["Exists Clause"]
e1v1 --"wdt:P53"--> e1c2
e1v1("?personaje_origen"):::projected
e1c2(["wd:Q2739222"]):::iri
end
bind0--EXISTS--> bind0e1
subgraph bind0e2["Exists Clause"]
e2v1 --"wdt:P53"--> e2c2
e2v1("?personaje_origen"):::projected
e2c2(["wd:Q2704863"]):::iri
end
bind0--EXISTS--> bind0e2
subgraph bind0e3["Exists Clause"]
e3v1 --"wdt:P53"--> e3c2
e3v1("?personaje_origen"):::projected
e3c2(["wd:Q2304848"]):::iri
end
bind0--EXISTS--> bind0e3
v1 --o bind0
null --o bind0
null --o bind0
null --o bind0
null --o bind0
null --o bind0
bind0 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end