query-ca93ad0c003a243d6ff14550c46f2a27

rq turtle/ttl

TODO

Use at

PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/> 
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
prefix schema: <http://schema.org/>

Select ?sujet ?sujetLabel where { 

  ?article schema:about ?sujet .
  ?article schema:inLanguage "ja" .
  ?article wikibase:badge wd:Q17437796 .

  minus {
      ?articlefr schema:about ?sujet .
      ?articlefr schema:inLanguage "fr" .
  }

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "fr,ja" .
  }
 }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?article") v3("?articlefr") v2("?sujet"):::projected c8(["bd:serviceParam"]):::iri c10(["fr,ja"]):::literal c3(["ja"]):::literal c6(["fr"]):::literal c5(["wd:Q17437796"]):::iri v1 --"schema:about"--> v2 v1 --"schema:inLanguage"--> c3 v1 --"wikibase:badge"--> c5 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"schema:about"--> v2 v3 --"schema:inLanguage"--> c6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end