query-5bd81e6c7cadb82d6ec273fc8b51749c
Writers from the Canary Islands
Escritoras y escritores de Canarias
SELECT DISTINCT ?autor ?autor_etiqueta ?eswiki_titulo ?eswiki_url WHERE { { ?autor (wdt:P19/(wdt:P131)) ?provincia. VALUES ?provincia { wd:Q95080 wd:Q99976 } } UNION { ?autor wdt:P19 wd:Q5813. } ?autor (wdt:P106/(wdt:P279)) wd:Q36180; rdfs:label ?autor_etiqueta. FILTER((LANG(?autor_etiqueta)) = "es") OPTIONAL { ?eswiki_url schema:about ?autor; schema:isPartOf https://es.wikipedia.org/; schema:name ?eswiki_titulo. } } ORDER BY DESC (?autor_etiqueta)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# Writers from the Canary Islands
# Escritoras y escritores de Canarias
SELECT DISTINCT ?autor ?autor_etiqueta ?eswiki_titulo ?eswiki_url WHERE {
{
?autor (wdt:P19/(wdt:P131*)) ?provincia.
VALUES ?provincia {
wd:Q95080
wd:Q99976
}
}
UNION
{ ?autor wdt:P19 wd:Q5813. }
?autor (wdt:P106/(wdt:P279*)) wd:Q36180;
rdfs:label ?autor_etiqueta.
FILTER((LANG(?autor_etiqueta)) = "es")
OPTIONAL {
?eswiki_url schema:about ?autor;
schema:isPartOf <https://es.wikipedia.org/>;
schema:name ?eswiki_titulo.
}
}
ORDER BY DESC (?autor_etiqueta)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?autor"):::projected
v1("?autor_etiqueta"):::projected
v5("?eswiki_titulo"):::projected
v4("?eswiki_url"):::projected
v4("?provincia")
a1((" "))
a2((" "))
c4(["wd:Q5813"]):::iri
c11([https://es.wikipedia.org/]):::iri
c7(["wd:Q36180"]):::iri
f0[["?autor_etiqueta = 'es'"]]
f0 --> v1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P19"--> c4
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P19"--> a1
a1 --"wdt:P131"--> v4
bind1[/VALUES ?provincia/]
bind1-->v4
bind10(["wd:Q95080"])
bind10 --> bind1
bind11(["wd:Q99976"])
bind11 --> bind1
end
union0r <== or ==> union0l
end
v2 --"wdt:P106"--> a2
a2 --"wdt:P279"--> c7
v2 --"rdfs:label"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v2
v4 --"schema:isPartOf"--> c11
v4 --"schema:name"--> v5
end