query-b4a5fe91c7a3257a5df42906f79ca406

rq turtle/ttl

title:Booker winners and nominees (books) present on most Wikimedia project SELECT DISTINCT ?item ?itemLabel ?links WHERE { VALUES ?award{wd:Q160082 wd:Q2052291} ?item wdt:P166|wdt:P1411 ?award. MINUS{?item wdt:P31 wd:Q5}. ?item wikibase:sitelinks ?links FILTER(?links > 1) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY DESC(?links)

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#>
#title:Booker winners and nominees (books) present on most Wikimedia project
SELECT DISTINCT ?item ?itemLabel ?links WHERE {
  VALUES ?award{wd:Q160082 wd:Q2052291}
 ?item wdt:P166|wdt:P1411 ?award.
  MINUS{?item wdt:P31 wd:Q5}.
?item wikibase:sitelinks ?links FILTER(?links > 1)
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY DESC(?links)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?award") v3("?item"):::projected v1("?links"):::projected c8(["bd:serviceParam"]):::iri c5(["wd:Q5"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?links > '1^^xsd:integer'"]] f0 --> v1 bind1[/VALUES ?award/] bind1-->v2 bind10(["wd:Q160082"]) bind10 --> bind1 bind11(["wd:Q2052291"]) bind11 --> bind1 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P1411"--> v2 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P166"--> v2 end union0r <== or ==> union0l end subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P31"--> c5 end v3 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end