query-3bfbfd0777998d953e89895c1b06b8dc

rq turtle/ttl

: (Q718)chess : (P641)sport Items with the only statement

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?sl ?itemLabel
{
    ?item wdt:P641 wd:Q718 ; wikibase:statements 1 ; wikibase:sitelinks ?sl ; rdfs:label ?l    

        SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(xsd:integer(strafter(str(?item), "Q")))
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?l") v2("?sl"):::projected c5(["1^^xsd:integer"]):::literal c9(["bd:serviceParam"]):::iri c3(["wd:Q718"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P641"--> c3 v1 --"wikibase:statements"--> c5 v1 --"wikibase:sitelinks"--> v2 v1 --"rdfs:label"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end