query-1d48d82c071224eae31379bb477d4c1c

rq turtle/ttl

title:elementi con id DBBI20 ma senza descrizione SELECT ?item ?itemLabel ?itemDescription (URI(Concat("https://www.aib.it/aib/editoria/dbbi20/",?idDBBI20)) as ?idDBBI20url) WHERE { ?item wdt:P31 wd:Q5; wdt:P8985 ?idDBBI20. MINUS {?item schema:description ?itemdesc.} 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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:elementi con id DBBI20 ma senza descrizione
SELECT ?item ?itemLabel ?itemDescription (URI(Concat("https://www.aib.it/aib/editoria/dbbi20/",?idDBBI20)) as ?idDBBI20url)
WHERE 
{
  ?item wdt:P31 wd:Q5; wdt:P8985 ?idDBBI20.
  MINUS {?item schema:description ?itemdesc.}
  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("?idDBBI20"):::projected v4("?idDBBI20url") v1("?item"):::projected v3("?itemdesc") c6(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P8985"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"schema:description"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"concat('https://www.aib.it/aib/editoria/dbbi20/',?idDBBI20)"/] v2 --o bind1 bind1 --as--o v4