query-8a4115d81f0c80a6dd73955ba776cbdd
Books in italian language - ISBN SELECT ?book ?bookLabel ?ISBN WHERE { ?book wdt:P31 wd:Q47461344. # Opera scritta ?book wdt:P212 ?ISBN. ?book wdt:P407 wd:Q652. # Italian language SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } LIMIT 1000
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#>
#Books in italian language - ISBN
SELECT ?book ?bookLabel ?ISBN
WHERE
{
?book wdt:P31 wd:Q47461344. # Opera scritta
?book wdt:P212 ?ISBN.
?book wdt:P407 wd:Q652. # Italian language
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?ISBN"):::projected
v1("?book"):::projected
c5(["wd:Q652"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q47461344"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P212"--> v2
v1 --"wdt:P407"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end