query-8a67e8552d9be1c6bee7c90ccb3bc033

rq turtle/ttl

Description attaché à des articles de "pejoratif"

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 ?desc WHERE { 
  ?item wdt:P31 wd:Q545779 .  
  # get the desc
  ?item schema:description ?desc .
  # only in english
  FILTER(LANG(?desc) = "en").
  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; v1("?desc"):::projected v2("?item"):::projected c6(["bd:serviceParam"]):::iri c3(["wd:Q545779"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?desc = 'en'"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"schema:description"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end