query-a73877fbaaf71758f19275adb494dff5

rq turtle/ttl

title: List of books SELECT ?book ?bookLabel ?rk WHERE { ?book wdt:P179 wd:Q744536; wdt:P1545 ?rank. BIND(xsd:integer(?rank) AS ?rk) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY (?rk)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
#title: List of books 
SELECT ?book ?bookLabel ?rk WHERE {
  ?book wdt:P179 wd:Q744536;
    wdt:P1545 ?rank.
  BIND(xsd:integer(?rank)  AS ?rk) 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY (?rk)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?book"):::projected v3("?rank") v4("?rk"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q744536"]):::iri v2 --"wdt:P179"--> c2 v2 --"wdt:P1545"--> v3 bind0[/"http://www.w3.org/2001/XMLSchema#integer(?rank)"/] v3 --o bind0 bind0 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end