query-3f4bfc9f5314ad95287c5590a1b22614
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 ?livro ?titulo ?ilustradorLabel ?editoraLabel ?publicado
WHERE
{
?livro wdt:P50 wd:Q35610;
wdt:P1476 ?titulo;
wdt:P110 ?ilustrador;
wdt:P123 ?editora;
wdt:P577 ?publicado.
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("?editora")
v3("?ilustrador")
v1("?livro"):::projected
v5("?publicado"):::projected
v2("?titulo"):::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