query-8dfffcce31d41be499f7bdf2355f8488
TODO
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 ?author ?authorLabel ?edition ?editionLabel WHERE {
?author wdt:P27 wd:Q414. # Argentinian author
?edition wdt:P50 ?author . # is an author of something
?edition wdt:P31 wd:Q3331189 . # something is an edition, translation &c.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],es,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?author"):::projected
v2("?edition"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q414"]):::iri
c5(["wd:Q3331189"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,es,en"]):::literal
v1 --"wdt:P27"--> c2
v2 --"wdt:P50"--> v1
v2 --"wdt:P31"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end