query-39ed0122ccf152913896353fd3df7e2b

rq turtle/ttl

TODO

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#>
SELECT ?item ?itemLabel 
WHERE
{
    ?item wdt:P106 wd:Q17524364 .
    FILTER NOT EXISTS { ?wfr schema:about ?item . ?wfr schema:inLanguage "en" }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?wfr") c5(["wd:Q17524364"]):::iri c7(["bd:serviceParam"]):::iri c9(["it,en"]):::literal c3(["en"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:about"--> e0v2 e0v1 --"schema:inLanguage"--> e0c3 e0v2("?item"):::projected e0v1("?wfr"):::projected e0c3(["en"]):::literal end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 f0 --> c2 f0 --> c3 v1 --"schema:about"--> v2 v1 --"schema:inLanguage"--> c3 v2 --"wdt:P106"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end