query-54c0aee3d4e3dd63287453d71ac54b58

rq turtle/ttl

manque Langue d'expression tinyurl.com/zxb5sol

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#>
PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel WHERE {
  ?item wdt:P106 wd:Q201788.
  ?article schema:about ?item.
  ?article schema:isPartOf <https://fr.wikipedia.org/>.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
  FILTER(NOT EXISTS { ?item wdt:P1412 ?foo. })
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article") v2("?foo") v1("?item"):::projected c8(["bd:serviceParam"]):::iri c6([https://fr.wikipedia.org/]):::iri c10(["fr"]):::literal c3(["wd:Q201788"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P1412"--> e0v2 e0v2("?foo"):::projected e0v1("?item"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 v1 --"wdt:P1412"--> v2 v1 --"wdt:P106"--> c3 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end