query-6817c45a587c39ab70b68685ba02ab44

rq turtle/ttl

Todas las entradas del eDBA apunta a la web del eDBA. (P973)described at URL Todas los elementos cuya

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?P973 ?lugar_de_nacimiento ?lugar_de_nacimientoLabel ?fecha_de_nacimiento ?lugar_de_fallecimiento ?lugar_de_fallecimientoLabel ?fecha_de_fallecimiento ?sexo_o_g_nero ?sexo_o_g_neroLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
  ?item wdt:P973 ?P973.
  FILTER(CONTAINS(STR(?P973), "edba.nsf"))
  OPTIONAL { ?item wdt:P19 ?lugar_de_nacimiento. }
  OPTIONAL { ?item wdt:P569 ?fecha_de_nacimiento. }
  OPTIONAL { ?item wdt:P20 ?lugar_de_fallecimiento. }
  OPTIONAL { ?item wdt:P570 ?fecha_de_fallecimiento. }
  OPTIONAL { ?item wdt:P21 ?sexo_o_g_nero. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?P973"):::projected v6("?fecha_de_fallecimiento"):::projected v4("?fecha_de_nacimiento"):::projected v2("?item"):::projected v5("?lugar_de_fallecimiento"):::projected v3("?lugar_de_nacimiento"):::projected v7("?sexo_o_g_nero"):::projected c3(["bd:serviceParam"]):::iri c5(["es"]):::literal f0[["contains(str(?P973),'edba.nsf')"]] f0 --> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end v2 --"wdt:P973"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P19".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P20".-> v5 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P570".-> v6 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P21".-> v7 end