query-dc282b334a404a79f2bc67221c50a0b6

rq turtle/ttl

Get number of languages specific books are available in Wikipedia ).contribs • [[User talk:|talk]] ([[User:|?]] comment was added byunsignedThe preceding – is available in 51 languages apart from Italian. I can get the list of books, but can't find the property "page also available in". The Name of the RoseHi, I would like to find the number of languages Italian books from the 1980 are available in Wikipedia, for instance

Use at

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 ?itemDescription ?sts
{
    ?item wdt:P31 wd:Q7725634 . 
    ?item wdt:P407 wd:Q652 . 
    ?item wikibase:sitelinks ?sts .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
}
ORDER BY DESC(?sts)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?sts"):::projected c9(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal c4(["wd:Q652"]):::iri c7(["bd:serviceParam"]):::iri c2(["wd:Q7725634"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P407"--> c4 v2 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end