query-fe6e4ccf6d62227a2d1144bc645cdf2c
Occupations for autofixHi! Today I worked a bit on the ontology of humanistic field professions; in searching for
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?person ?occupation WHERE { ?person wdt:P106 ?occupation . MINUS { ?occupation wdt:P279 ?subclass . } }
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?occupation"):::projected
v1("?person"):::projected
v3("?subclass")
v1 --"wdt:P106"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P279"--> v3
end