query-b5f20c960350ed7a55adc05323fd8f71

rq turtle/ttl

Propertiesoccupation (P106)composer (P86)

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 ?composer ?composerLabel
WHERE {
  ?composer wdt:P106 wd:Q36834 ;
            wikibase:sitelinks ?sitelinks .
  MINUS {?work wdt:P86 ?composer}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?sitelinks)
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?composer"):::projected v1("?sitelinks") v3("?work") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q36834"]):::iri v2 --"wdt:P106"--> c2 v2 --"wikibase:sitelinks"--> v1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P86"--> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end