query-88a192af2b000c7e6fbdb736eb66cc2b
Primeras líneas de obras en español
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 ?item ?itemLabel ?inicio ?autorLabel
WHERE
{
?item wdt:P407 wd:Q1321 . #idioma español
?item wdt:P50 ?autor . # autor
?item wdt:P1922 ?inicio .
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;
v2("?autor")
v3("?inicio"):::projected
v1("?item"):::projected
c6(["bd:serviceParam"]):::iri
c8(["es,en"]):::literal
c2(["wd:Q1321"]):::iri
v1 --"wdt:P407"--> c2
v1 --"wdt:P50"--> v2
v1 --"wdt:P1922"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end