query-0785029d8dd6b93cc0c3aa879732e14d

rq turtle/ttl

Relaciones entre los personajes de “Juego de Tronos” con los escudos de armas de sus familias

Use at

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 ?escudo
     ?personaje_destino ?personaje_destinoLabel ?edgeLabel 


WHERE {
      {
     SELECT ?personaje_origen ?escudo WHERE {
          ?personaje_origen wdt:P31 wd:Q20086263 .
          OPTIONAL {?personaje_origen wdt:P53/wdt:P94 ?escudo .}
     }
}      {
     SELECT ?personaje_destino WHERE {
          ?personaje_destino wdt:P31 wd:Q20086263 .
     }
}     ?personaje_origen ?relacion ?personaje_destino .
     ?edge wikibase:directClaim ?relacion.
     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; v5("?edge") v2("?escudo"):::projected v3("?personaje_destino"):::projected v1("?personaje_origen"):::projected v4("?relacion") a1((" ")) c2(["wd:Q20086263"]):::iri c7(["bd:serviceParam"]):::iri c9(["es,en"]):::literal v1 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P53".-> a1 a1 --"wdt:P94"--> v2 end v3 --"wdt:P31"--> c2 v1 -->v4--> v3 v5 --"wikibase:directClaim"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end