query-c10939cb044a487bbd4ee542e8b3b147
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?itemLabel_en ?sitelink ?itemLabel_it
WHERE
{
?item wdt:P27 wd:Q38 .
?item wdt:P21 wd:Q6581072 .
?article schema:about ?item ;
schema:name ?sitelink ;
schema:isPartOf <https://it.wikipedia.org/> .
MINUS { ?item wdt:P106 [] }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v1("?item"):::projected
v3("?sitelink"):::projected
a1((" "))
c2(["wd:Q38"]):::iri
c4(["wd:Q6581072"]):::iri
c8([https://it.wikipedia.org/]):::iri
v1 --"wdt:P27"--> c2
v1 --"wdt:P21"--> c4
v2 --"schema:about"--> v1
v2 --"schema:name"--> v3
v2 --"schema:isPartOf"--> c8
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P106"--> a1
end