query-19feff88095270aaab5b616e2b8a7c3c

rq turtle/ttl

title:autori di opere (work) in italiano ma senza occupazione e lingua di scrittura SELECT ?item ?itemLabel ?autore ?autoreLabel WHERE { ?item wdt:P31 wd:Q47461344; wdt:P407 wd:Q652; wdt:P50 ?autore. ?autore wdt:P31 wd:Q5 MINUS {?autore wdt:P1412 ?lingua} MINUS {?autore wdt:P6886 ?linguascrit} MINUS {?autore wdt:P106 wd:Q36180} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

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:autori di opere (work) in italiano ma senza occupazione e lingua di scrittura
SELECT ?item ?itemLabel ?autore ?autoreLabel 
WHERE 
{
  ?item wdt:P31 wd:Q47461344; wdt:P407 wd:Q652; wdt:P50 ?autore.
  ?autore wdt:P31 wd:Q5
  MINUS {?autore wdt:P1412 ?lingua}
  MINUS {?autore wdt:P6886 ?linguascrit}
  MINUS {?autore wdt:P106 wd:Q36180}
  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; v2("?autore"):::projected v1("?item"):::projected v3("?lingua") v4("?linguascrit") c2(["wd:Q47461344"]):::iri c10(["wd:Q36180"]):::iri c4(["wd:Q652"]):::iri c12(["bd:serviceParam"]):::iri c6(["wd:Q5"]):::iri c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P407"--> c4 v1 --"wdt:P50"--> v2 v2 --"wdt:P31"--> c6 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P1412"--> v3 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P6886"--> v4 end subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P106"--> c10 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end