query-b6a498c16372f81b726d03048e75e462
. (P577)publication date y la (P123)publisher , (P110)illustrator , (P1476)title Pero es un poco aburrida. ¿Hay mucho potencial en la información sobre libros, y solamente mostramos las etiquetas?. Intentemos elaborar una consulta que incluya la Un primer intento debería verse como algo así:
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 ?libro ?título ?ilustradorLabel ?editorialLabel ?fecha_de_publicación
WHERE
{
?libro wdt:P50 wd:Q35610;
wdt:P1476 ?título;
wdt:P110 ?ilustrador;
wdt:P123 ?editorial;
wdt:P577 ?fecha_de_publicación.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?editorial")
v5("?fecha_de_publicación"):::projected
v3("?ilustrador")
v1("?libro"):::projected
v2("?título"):::projected
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;"]):::literal
c2(["wd:Q35610"]):::iri
v1 --"wdt:P50"--> c2
v1 --"wdt:P1476"--> v2
v1 --"wdt:P110"--> v3
v1 --"wdt:P123"--> v4
v1 --"wdt:P577"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end