query-4dcc6c6db967dc6ab82d217fdc007b92

rq turtle/ttl

Human being having voice type (P412) but without a defined occupation 10:19, 11 August 2020 (UTC)) talk (LuckyzDear fellows, I would like to create a query to extract all human beings having property voice type P412, not having a defined property occupation P106. I thank you.

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 ?item ?itemLabel ?itemDescription ?voicetypeLabel
WHERE
{
  ?item wdt:P412 ?voicetype .
  FILTER NOT EXISTS { ?item wdt:P106 [] }
  ?item wdt:P31 wd:Q5. 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?voicetype") a1((" ")) c6(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P106"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 v1 --"wdt:P106"--> a1 v1 --"wdt:P412"--> v2 v1 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end