query-30b8a3e10f7007ba03b66c6f50272485
CEOs, entrepreneurs, etc.(Q131524)entrepreneur , (Q484876)chief executive officer , (Q43845)businessperson Items to watch:
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item WHERE {
VALUES ?class { wd:Q484876 wd:Q131524 } # Q484876=CEO, Q131524=entrepreneur
?item ?any ?class; wikibase:sitelinks 0; wikibase:identifiers 0 .
MINUS { [] ?backlink ?item }
} ORDER BY DESC(xsd:integer(STRAFTER(STR(?item), 'entity/Q')))
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?any")
v4("?backlink")
v2("?class")
v1("?item"):::projected
a1((" "))
c3(["0^^xsd:integer"]):::literal
bind0[/VALUES ?class/]
bind0-->v2
bind00(["wd:Q484876"])
bind00 --> bind0
bind01(["wd:Q131524"])
bind01 --> bind0
v1 -->v3--> v2
v1 --"wikibase:sitelinks"--> c3
v1 --"wikibase:identifiers"--> c3
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
a1 -->v4--> v1
end